ci(check): keep going after failure

This commit is contained in:
steven-omaha
2024-04-04 13:01:59 +02:00
parent ceaccc8748
commit 2c409d2c46
+4
View File
@@ -37,14 +37,18 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Format - name: Format
if: '!cancelled()'
run: cargo fmt -- --check run: cargo fmt -- --check
- name: Build - name: Build
if: '!cancelled()'
run: cargo build --locked --features arch,debian run: cargo build --locked --features arch,debian
- name: Clippy - name: Clippy
if: '!cancelled()'
run: cargo clippy --features arch,debian -- -Dwarnings run: cargo clippy --features arch,debian -- -Dwarnings
- name: Test - name: Test
if: '!cancelled()'
run: cargo test --workspace --features arch,debian run: cargo test --workspace --features arch,debian