Skip to content

Commit

Permalink
chore(ci): Run more checks on Windows
Browse files Browse the repository at this point in the history
Because we have `anstyle-wincon`

MSRV is important for holding up our guarentees.

I skipped minimal versions because of some problem with `winapi` that I
couldn't decipher and the community is less interested in those being
correct.

I didn't add clippy as I was unsure how it would work out for checks
that are duplicate across platforms.
  • Loading branch information
epage committed Jan 13, 2025
1 parent 1f3fef0 commit 92fe1b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ jobs:
run: cargo hack test --feature-powerset --workspace
msrv:
name: "Check MSRV"
runs-on: ubuntu-latest
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit 92fe1b2

Please sign in to comment.