From 0acada21e0c0506bf54eb5ef0ddebbb28396437a Mon Sep 17 00:00:00 2001 From: Dave Brondsema Date: Mon, 1 Jul 2024 11:38:45 -0400 Subject: [PATCH] update gh actions, fix codecov hopefully v4 of codecov action should allow for forks to work better. Also make it not fail CI just to be sure --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3483a83..e7b61b6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: CI + name: CI # Controls when the workflow will run on: @@ -39,7 +39,7 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v4 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} allow-prereleases: true @@ -55,9 +55,9 @@ jobs: run: tox --skip-missing-interpreters false -e py`echo ${{ matrix.python-version }} | sed s/\\\.// | sed s/pypy/py/ | sed s/-dev//` - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: - fail_ci_if_error: true + fail_ci_if_error: false flags: tests-${{ matrix.python-version }} name: codecov-umbrella verbose: true