Skip to content

Commit ed51323

Browse files
committed
Rename and simplify integration test job
Rename the integration test job to `IntTests` now that we do not run the full matrix of unit tests in this job. Simplify the yaml by removing the strategy section since we only use a single toolchain in this job.
1 parent 27df863 commit ed51323

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/rust.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -71,21 +71,17 @@ jobs:
7171
DO_FEATURE_MATRIX: true
7272
run: ./contrib/test.sh
7373

74-
AllTests:
75-
name: Unit + Int tests
74+
IntTests:
75+
name: Integration tests
7676
runs-on: ubuntu-latest
77-
strategy:
78-
matrix:
79-
rust:
80-
- stable
8177
steps:
8278
- name: Checkout Crate
8379
uses: actions/checkout@v2
8480
- name: Checkout Toolchain
8581
uses: actions-rs/toolchain@v1
8682
with:
8783
profile: minimal
88-
toolchain: ${{ matrix.rust }}
84+
toolchain: stable
8985
override: true
9086
- name: Running cargo
9187
env:

0 commit comments

Comments
 (0)