1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-05-16 23:17:45 +00:00
physis/.build.yml
Joshua Goins 1028c935d2 Move deny-check CI task as the last one, to help real unit tests run
Previously, if deny-check failed - unit tests wouldn't run which is
weird. Sourcehut CI currently doesn't allow later tasks to run despite
a previous failure, so let's try shuffling them around instead.
2022-08-06 18:05:01 -04:00

16 lines
No EOL
255 B
YAML

image: archlinux
packages:
- rust
- cargo-deny
sources:
- https://git.sr.ht/~redstrate/physis
tasks:
- check: |
cd physis
cargo check
- test: |
cd physis
cargo test
- deny-check: |
cd physis
cargo deny check