From 2c0a6c6f602ca637c1bb35057132c008660eb1a8 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Sun, 14 Jan 2024 17:24:30 -0800 Subject: [PATCH] Install `cargo-run-bin` using `cargo install` directly. This more than doubles the CI runtime, but I think that's okay to avoid CI failures for now. Perhaps https://github.com/dustinblackman/cargo-run-bin/issues/21 can lead to something more reliable. --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 24b5b09..e4bb657 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v4 - uses: Swatinem/rust-cache@v2 - uses: cargo-bins/cargo-binstall@v1.4.9 - - run: cargo binstall --no-confirm cargo-run-bin || cargo install --no-confirm cargo-run-bin + - run: cargo install cargo-run-bin - run: make build - run: make test - run: make lint