Skip to content

Commit

Permalink
Merge pull request #34 from h1alexbel/19
Browse files Browse the repository at this point in the history
fix(#19): run cargo on ubuntu, mac, win
  • Loading branch information
h1alexbel authored Jun 5, 2024
2 parents 738d065 + b3077b9 commit a7361fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ env:
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
os: [ ubuntu-22.04, windows-2022, macos-12 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: cargo test
Expand Down

0 comments on commit a7361fa

Please sign in to comment.