summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2024-03-04 17:46:57 +0100
committerGitHub <noreply@github.com>2024-03-04 17:46:57 +0100
commit668a79f9f91b65a00bf7290bd3f01c3a5125955a (patch)
tree2ccae721561761c29165e61dcf8a9b6057105880 /.github/workflows
parente3bd39c9d156a4a02a8b7398ed5769100a3d877a (diff)
Add Windows to CI (#3548)
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a11f24dd..d0ab420d 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -8,12 +8,14 @@ env:
jobs:
tests:
name: Tests
- runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ os: [ubuntu-latest, windows-latest]
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- - run: cargo build --workspace
- run: cargo test --workspace --no-fail-fast
checks: