Skip to content

Commit

Permalink
use macos and windows in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm committed May 11, 2024
1 parent ac144c7 commit dec9ee7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,17 @@ env:
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
Expand Down

0 comments on commit dec9ee7

Please sign in to comment.