ci: report errors correctly
Some checks failed
test / AoC 2024 (push) Failing after 3m11s

This commit is contained in:
Keenan Tims 2024-12-18 15:35:55 -08:00
parent 824d111b18
commit 0fee7c3594
Signed by: ktims
GPG Key ID: 11230674D69038D4

View File

@ -49,16 +49,14 @@ jobs:
- name: cargo test
run: cargo test --lib
continue-on-error: true
- name: rustfmt
run: cargo fmt --all -- --check
continue-on-error: true
- name: clippy
run: cargo clippy --lib --tests -- -D warnings
continue-on-error: true
if: always()
- name: full run
run: cargo run --release
continue-on-error: true
if: always()