From 1028c935d271b80d35d85fa1da23624d5cf30248 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 6 Aug 2022 18:05:01 -0400 Subject: [PATCH] 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. --- .build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.build.yml b/.build.yml index 7a5042e..c57f882 100644 --- a/.build.yml +++ b/.build.yml @@ -8,9 +8,9 @@ tasks: - check: | cd physis cargo check - - deny-check: | - cd physis - cargo deny check - test: | cd physis - cargo test \ No newline at end of file + cargo test + - deny-check: | + cd physis + cargo deny check \ No newline at end of file