From e2932427ed95a44ab158498d0d2321b1349af25c Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 15 Feb 2022 23:34:43 +0000 Subject: [PATCH 1/2] CI: Update `codecov/codecov-action` to v2.1.0 --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8220a062..6ba83091 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,9 +106,7 @@ jobs: command: tarpaulin args: --all-features --timeout 600 --out Xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 - with: - token: ${{secrets.CODECOV_TOKEN}} + uses: codecov/codecov-action@v2.1.0 doc-links: name: Intra-doc links From 82bb4e61418bdc9f6cc98b0a8827b7ad7c140a84 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 15 Feb 2022 23:35:11 +0000 Subject: [PATCH 2/2] CI: Test against Windows and macOS in addition to Ubuntu --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ba83091..61889b07 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - # We don't need to test across multiple platforms yet - # os: [ubuntu-latest, windows-latest, macOS-latest] - os: [ubuntu-latest] + os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v2