Skip to content

Commit

Permalink
feat: macos support
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys authored Mar 11, 2024
1 parent ee8f8c9 commit 1dc61a7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ on:
jobs:
test:
name: 'test ${{ matrix.os }}'
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ runs:
sudo apt-get update
sudo apt-get install deb-s3
shell: bash
if: runner.os == 'Linux'
- run: gem install deb-s3
shell: bash
if: runner.os == 'macOS'

0 comments on commit 1dc61a7

Please sign in to comment.