diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60f7858..26811d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,14 +91,17 @@ jobs: shell: bash run: cargo $CMD build --verbose --target ${{ matrix.platform.target }} $OPTIONS --features $FEATURES + - name: Pin versions of dev-deps + if: matrix.rust_version == '1.65.0' + run: cargo update -p half --precise 2.2.1 + - name: Build tests shell: bash if: > !((matrix.platform.os == 'ubuntu-latest') && contains(matrix.platform.target, 'i686')) && !contains(matrix.platform.target, 'redox') && !contains(matrix.platform.target, 'freebsd') && - !contains(matrix.platform.target, 'netbsd') && - matrix.rust_version != '1.65.0' + !contains(matrix.platform.target, 'netbsd') run: cargo $CMD test --no-run --verbose --target ${{ matrix.platform.target }} $OPTIONS --features $FEATURES - name: Run tests