diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32f3ab9c..ba8d8079 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,8 +56,9 @@ jobs: run: cargo xclippy -D warnings - name: Doctests run: cargo test --doc --workspace - - name: Cargo-deny - uses: EmbarkStudios/cargo-deny-action@v1 + # TODO: Uncomment once https://github.com/EmbarkStudios/cargo-deny-action/issues/67 is released + # - name: Cargo-deny + # uses: EmbarkStudios/cargo-deny-action@v1 bench-regression: runs-on: warp-ubuntu-latest-x64-32x diff --git a/src/core/cli/tests/mod.rs b/src/core/cli/tests/mod.rs index 3fcd5a44..fc9ecac7 100644 --- a/src/core/cli/tests/mod.rs +++ b/src/core/cli/tests/mod.rs @@ -8,11 +8,11 @@ fn test_meta_commands() { set_config_if_unset(Config::default()); let mut repl = Repl::new_native(); assert!(repl - .load_file("src/lurk/cli/tests/first.lurk".into(), false) + .load_file("src/core/cli/tests/first.lurk".into(), false) .is_ok()); let mut repl = Repl::new_native(); assert!(repl - .load_file("src/lurk/cli/tests/second.lurk".into(), false) + .load_file("src/core/cli/tests/second.lurk".into(), false) .is_ok()); std::fs::remove_file("repl-test-two").unwrap(); } @@ -23,11 +23,11 @@ fn test_meta_commands_with_proofs() { set_config_if_unset(Config::default()); let mut repl = Repl::new_native(); assert!(repl - .load_file("src/lurk/cli/tests/prove.lurk".into(), false) + .load_file("src/core/cli/tests/prove.lurk".into(), false) .is_ok()); let mut repl = Repl::new_native(); assert!(repl - .load_file("src/lurk/cli/tests/verify.lurk".into(), false) + .load_file("src/core/cli/tests/verify.lurk".into(), false) .is_ok()); std::fs::remove_file("repl-test-protocol-proof").unwrap(); std::fs::remove_file("repl-test-protocol").unwrap();