Skip to content

Commit 8029e72

Browse files
authored
Merge pull request #286 from epage/template
chore(ci): Run more jobs on Windows
2 parents 36dd1a2 + 5b1cab4 commit 8029e72

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,10 @@ jobs:
7474
run: cargo hack check --each-feature --locked --rust-version --ignore-private --workspace --keep-going
7575
minimal-versions:
7676
name: Minimal versions
77-
runs-on: ubuntu-latest
77+
strategy:
78+
matrix:
79+
os: ["ubuntu-latest", "windows-latest"]
80+
runs-on: ${{ matrix.os }}
7881
steps:
7982
- name: Checkout repository
8083
uses: actions/checkout@v5

.github/workflows/rust-next.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ jobs:
4747
run: cargo hack test --each-feature --workspace
4848
latest:
4949
name: "Check latest dependencies"
50-
runs-on: ubuntu-latest
50+
strategy:
51+
matrix:
52+
os: ["ubuntu-latest", "windows-latest"]
53+
runs-on: ${{ matrix.os }}
5154
env:
5255
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
5356
steps:

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/anstyle-syntect/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ syntect = { version = "5.2.0", default-features = false }
2929

3030
[target.'cfg(any())'.dependencies]
3131
thiserror = "1.0.2" # HACK: bad minimal dep in syntect
32+
same-file = "1.0.6" # HACK: bad mininal dep somewhere
3233

3334
[lints]
3435
workspace = true

0 commit comments

Comments
 (0)