diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 143e6599..2f976571 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -165,7 +165,7 @@ jobs: os: - ubuntu - macOS - #- windows TODO: fix + - windows runs-on: ${{ matrix.os }}-latest steps: - uses: actions/checkout@v3 diff --git a/book/tests/Cargo.toml b/book/tests/Cargo.toml index 222bcc80..eff4875c 100644 --- a/book/tests/Cargo.toml +++ b/book/tests/Cargo.toml @@ -15,9 +15,13 @@ clap = { version = "3.0", features = ["derive"] } cucumber = { version = "0.12", path = "../..", features = ["output-json", "output-junit"] } futures = "0.3" humantime = "2.1" -once_cell = { version = "1.8", features = ["parking_lot"] } +once_cell = { version = "=1.9.0", features = ["parking_lot"] } skeptic = "0.13.7" tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] } +# See https://github.com/cucumber-rs/cucumber/pull/208#issuecomment-1063851474 +[path.crates-io] +parking_lot = "0.11" + [build-dependencies] skeptic = "0.13.7"