Skip to content

Commit

Permalink
ci: adds Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
claymcleod committed Nov 1, 2024
1 parent c5ec3a7 commit 132d89c
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
format:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust
Expand All @@ -18,7 +18,7 @@ jobs:
- run: cargo fmt -- --check

lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust
Expand All @@ -28,15 +28,19 @@ jobs:
- run: cargo clippy --all-features -- --deny warnings

test:
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Update Rust
run: rustup update stable && rustup default stable
- run: cargo test --all-features

docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Update Rust
Expand Down

0 comments on commit 132d89c

Please sign in to comment.