Skip to content

Commit

Permalink
Merge branch 'main' into bump-revision
Browse files Browse the repository at this point in the history
  • Loading branch information
unbeatable-101 authored Dec 31, 2023
2 parents 246318c + 32bd685 commit 43d1463
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,38 @@ jobs:
if: always() && github.event_name == 'pull_request'
uses: actions/upload-artifact@main
with:
name: ${{ runner.os }}-bottle
name: ${{ runner.name }}-bottle
path: '*.bottle.*'
macos10-15:
strategy:
matrix:
os: [macos-10.15]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master

- name: Cache Homebrew Bundler RubyGems
id: cache
uses: actions/cache@v3
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
restore-keys: ${{ runner.os }}-rubygems-

- run: brew test-bot --only-cleanup-before

- run: brew test-bot --only-setup

- run: brew test-bot --only-tap-syntax

- run: brew test-bot --only-formulae
if: github.event_name == 'pull_request'

- name: Upload bottles as artifact
if: always() && github.event_name == 'pull_request'
uses: actions/upload-artifact@main
with:
name: ${{ runner.name }}-bottle
path: '*.bottle.*'

0 comments on commit 43d1463

Please sign in to comment.