Skip to content

Commit

Permalink
Merge pull request #18 from aarontravass/ci/ghactions
Browse files Browse the repository at this point in the history
ci: added matrix build to test on all platforms
  • Loading branch information
v 1 r t l committed Jun 29, 2023
2 parents ba1c512 + 1071bc4 commit ca95ee9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ on:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1.1.1
Expand All @@ -21,6 +24,7 @@ jobs:
- name: Create coverage report
run: deno task cov
- name: Coveralls
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit ca95ee9

Please sign in to comment.