From 63b3055e7b451ec2432778745f0356297da0bf23 Mon Sep 17 00:00:00 2001 From: Graham Esau Date: Fri, 17 Sep 2021 23:53:46 +0100 Subject: [PATCH] Fix indexmap tests for rust 1.37 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be571f7..90f4f72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,8 @@ jobs: run: cargo check --verbose --no-default-features continue-on-error: ${{ matrix.allow_failure }} working-directory: ./schemars + - if: matrix.rust == '1.37.0' + run: cargo update -p indexmap --precise 1.6.2 - name: Run tests run: cargo test --verbose ${{ matrix.test_features }} --no-fail-fast continue-on-error: ${{ matrix.allow_failure }}