Skip to content

Commit

Permalink
Run tests against all plateform (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
agourlay authored Dec 6, 2024
1 parent 7a6597e commit 8aaeb35
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,22 @@ env:
jobs:
build:
name: Rust CI
runs-on: ubuntu-latest
strategy:
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: x86_64-pc-windows-msvc
os: windows-latest
- target: aarch64-pc-windows-msvc
os: windows-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: aarch64-apple-darwin
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
Expand Down

0 comments on commit 8aaeb35

Please sign in to comment.