We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7edf61 commit 6e998d6Copy full SHA for 6e998d6
.github/workflows/ci.yml
@@ -45,6 +45,7 @@ jobs:
45
run: cargo test --workspace --all-targets
46
47
build:
48
+ needs: [lint, test]
49
runs-on: ubuntu-latest
50
steps:
51
- name: Checkout our code
encryptify-lib/tests/zipper.rs
@@ -21,6 +21,9 @@ fn test_zip_folder_creates_zip_archive() {
21
// Assert: Check if the output zip file exists
22
assert!(Path::new(output_path).exists());
23
24
+ // Intentionally failing the test
25
+ assert!(false);
26
+
27
// Cleanup: Remove the test folder and zip file
28
fs::remove_dir_all(folder_path).unwrap();
29
fs::remove_file(output_path).unwrap();
0 commit comments