Skip to content

Commit 5fa455e

Browse files
authored
Merge pull request #192 from epage/template
chore: Update from _rust template
2 parents aae283a + 5d1dd79 commit 5fa455e

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ jobs:
5757
run: cargo test --workspace --release
5858
msrv:
5959
name: "Check MSRV"
60-
runs-on: ubuntu-latest
60+
strategy:
61+
matrix:
62+
os: ["ubuntu-latest"]
63+
runs-on: ${{ matrix.os }}
6164
steps:
6265
- name: Checkout repository
6366
uses: actions/checkout@v6
@@ -71,7 +74,10 @@ jobs:
7174
run: cargo hack check --each-feature --locked --rust-version --ignore-private --workspace --all-targets --keep-going --exclude-features nightly
7275
minimal-versions:
7376
name: Minimal versions
74-
runs-on: ubuntu-latest
77+
strategy:
78+
matrix:
79+
os: ["ubuntu-latest"]
80+
runs-on: ${{ matrix.os }}
7581
steps:
7682
- name: Checkout repository
7783
uses: actions/checkout@v6

.github/workflows/rust-next.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,12 @@ jobs:
4545
run: cargo hack test --each-feature --workspace --exclude-features nightly
4646
latest:
4747
name: "Check latest dependencies"
48-
runs-on: ubuntu-latest
48+
strategy:
49+
matrix:
50+
os: ["ubuntu-latest"]
51+
runs-on: ${{ matrix.os }}
52+
env:
53+
CARGO_RESOLVER_INCOMPATIBLE_RUST_VERSIONS: allow
4954
steps:
5055
- name: Checkout repository
5156
uses: actions/checkout@v6

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ str_to_string = "warn"
8282
string_add = "warn"
8383
string_add_assign = "warn"
8484
string_lit_as_bytes = "warn"
85-
string_to_string = "warn"
8685
todo = "warn"
8786
trait_duplication_in_bounds = "warn"
8887
uninlined_format_args = "warn"

0 commit comments

Comments
 (0)