From 43dc6edf16f779be4693d83ff6741cdceaa08379 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Fri, 31 Mar 2023 16:04:47 +0530 Subject: [PATCH 1/2] feat: pin tarpaulin to 0.25.1 --- .github/workflows/linux.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index b10dc14..118b4c7 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -57,6 +57,7 @@ jobs: - name: Generate coverage file if: matrix.version == 'stable' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') uses: actions-rs/tarpaulin@v0.1 + version: 0.25.1 with: args: '-t 1200' From c1a2f3980d62ef323a3ed6517283c61dcfcf6767 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Fri, 31 Mar 2023 16:07:14 +0530 Subject: [PATCH 2/2] feat: run CI on all branches --- .github/workflows/linux.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 118b4c7..1d59d1a 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -6,7 +6,8 @@ on: push: branches: - master - + - "*" + - "!gh-pages" jobs: build_and_test: @@ -57,9 +58,9 @@ jobs: - name: Generate coverage file if: matrix.version == 'stable' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request') uses: actions-rs/tarpaulin@v0.1 - version: 0.25.1 with: - args: '-t 1200' + version: 0.25.1 + args: "-t 1200" - name: Upload to Codecov if: matrix.version == 'stable' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')