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`
  • Loading branch information
epage committed Jan 13, 2025
1 parent 1f3fef0 commit b8586ac
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .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 All @@ -68,7 +71,10 @@ jobs:
run: cargo hack check --feature-powerset --locked --rust-version --ignore-private --workspace
minimal-versions:
name: Minimal versions
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 b8586ac

Please sign in to comment.