From b22ea88d7e02056a4103a60f6a55d495187fd828 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Wed, 30 Jun 2021 22:54:06 +0530 Subject: [PATCH] coverage workflow to run on 1.51.0 --- .github/workflows/coverage.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 29014289..430b6cf1 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -13,7 +13,8 @@ jobs: fail-fast: false matrix: version: - - stable + # - stable + - 1.51.0 name: ${{ matrix.version }} - x86_64-unknown-linux-gnu runs-on: ubuntu-latest @@ -89,7 +90,7 @@ jobs: DATABASE_URL: postgres://postgres:password@localhost:5432/postgres - name: Generate coverage file - if: matrix.version == 'stable' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') + if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') uses: actions-rs/tarpaulin@v0.1 with: version: '0.15.0'