From 14b9f4f3600d2406e411d9afce07c7240a7a0545 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Fri, 14 Apr 2023 12:50:44 +0100 Subject: [PATCH] Upgrade GitHub actions #nolog --- .github/workflows/tests.yml | 19 +++++++++++-------- tox.ini | 2 +- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9be1c3d..adb0825 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,8 +11,8 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 - run: python -m pip install --upgrade pip wheel - run: pip install tox tox-gh-actions - run: tox -eflake8 @@ -30,8 +30,8 @@ jobs: fail-fast: false runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 with: python-version: ${{ matrix.python }} - run: python -m pip install --upgrade pip wheel @@ -41,9 +41,12 @@ jobs: name: coverage runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-python@v3 - run: python -m pip install --upgrade pip wheel - - run: pip install tox tox-gh-actions codecov + - run: pip install tox tox-gh-actions - run: tox - - run: codecov + - uses: codecov/codecov-action@v3 + with: + files: ./coverage.xml + fail_ci_if_error: true diff --git a/tox.ini b/tox.ini index e8f671b..12d2891 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ python = [testenv] commands= pip install -e . - pytest -p no:logging --cov=socketio --cov-branch --cov-report=term-missing + pytest -p no:logging --cov=socketio --cov-branch --cov-report=term-missing --cov-report=xml deps= msgpack pytest