Skip to content

Commit 3ab1c03

Browse files
committed
Run full tests with MSRV
1 parent 3aa5e3e commit 3ab1c03

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/msrv.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@ on:
88

99
jobs:
1010
check:
11-
name: Check
11+
name: Test
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: dtolnay/rust-toolchain@1.46
16-
- name: Check (no default features)
17-
run: cargo check --no-default-features
18-
- name: Check (default features)
19-
run: cargo check
20-
- name: Check (serde)
21-
run: cargo check --features serde
22-
- name: Check (all features)
23-
run: cargo check --all-features
16+
- name: Run tests (no default features)
17+
run: cargo test --no-default-features
18+
- name: Run tests (default features)
19+
run: cargo test
20+
- name: Run tests (serde)
21+
run: cargo test --features serde
22+
- name: Run tests (all features)
23+
run: cargo test --all-features
24+
- name: Run tests (release build)
25+
run: cargo test --release

.github/workflows/stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
check:
11-
name: Check
11+
name: Test
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)