Skip to content

Commit

Permalink
Merge pull request #2606 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Upgrade GitHub Actions
  • Loading branch information
willmcgugan committed Mar 4, 2023
2 parents 3273ea8 + b56fa35 commit 0b845b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install and configure Poetry
# TODO: workaround for https://github.com/snok/install-poetry/issues/94
uses: snok/install-poetry@v1.3.1
uses: snok/install-poetry@v1.3.3
with:
version: 1.3.1
virtualenvs-in-project: true
Expand All @@ -41,7 +41,7 @@ jobs:
source $VENV
pytest tests -v --cov=./rich --cov-report=xml:./coverage.xml --cov-report term-missing
- name: Upload code coverage
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
Expand Down

0 comments on commit 0b845b3

Please sign in to comment.