ci: Don't run check / build before test

It is redundant.
This commit is contained in:
Jonas Platte
2022-03-03 18:25:43 +01:00
parent 95665c8bc0
commit e136199bfd
2 changed files with 0 additions and 17 deletions

View File

@@ -56,12 +56,6 @@ jobs:
command: clippy
args: --manifest-path crates/matrix-sdk-appservice/Cargo.toml ${{ matrix.cargo_args }} -- -D warnings
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --manifest-path crates/matrix-sdk-appservice/Cargo.toml ${{ matrix.cargo_args }}
- name: Test
uses: actions-rs/cargo@v1
with:

View File

@@ -137,12 +137,6 @@ jobs:
- name: Load cache
uses: Swatinem/rust-cache@v1
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
args: --manifest-path crates/matrix-sdk/Cargo.toml ${{ matrix.cargo_args }}
- name: Test
uses: actions-rs/cargo@v1
with:
@@ -186,11 +180,6 @@ jobs:
- name: Load cache
uses: Swatinem/rust-cache@v1
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
- name: Test
uses: actions-rs/cargo@v1
with: