diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ade5a1a70..6e8e0e57f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,9 @@ jobs: uses: dtolnay/rust-toolchain@stable with: toolchain: ${{ matrix.rust }} + # Cargo + - name: Generate lockfile and pin dependencies for MSRV + run: cargo generate-lockfile && cargo update -p libc --precise 0.2.163 && cargo update -p glob --precise 0.3.2 && cargo update -p libloading --precise 0.8.8 # Test - name: Cargo Test (Dynamic) run: cargo test --verbose --features ${{ matrix.clang[1] }} -- --nocapture