diff --git a/.github/workflows/cargo-checkct.yml b/.github/workflows/cargo-checkct.yml index 4986ebdf6..fa527d0e7 100644 --- a/.github/workflows/cargo-checkct.yml +++ b/.github/workflows/cargo-checkct.yml @@ -16,8 +16,13 @@ env: RUSTDOCFLAGS: "-Dwarnings" jobs: - build: + checkct: + name: Run cargo-checkct runs-on: ubuntu-latest - uses: Ledger-Donjon/action-cargo-checkct@v1 - with: - directory: . + + steps: + - uses: actions/checkout@v4 + + - uses: Ledger-Donjon/action-cargo-checkct@v1 + with: + directory: . diff --git a/checkct/driver/Cargo.toml b/checkct/driver/Cargo.toml index 116a459f2..67cf950e5 100644 --- a/checkct/driver/Cargo.toml +++ b/checkct/driver/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [dependencies] rand_core = "0.6.4" -checkct_macros = { path = "../../../../cargo-checkct/checkct_macros" } +checkct_macros = { path = "../../cargo-checkct/checkct_macros" } crypto-bigint = { path = "../.." }