Skip to content

Commit

Permalink
Update CI versions (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
coroa authored Mar 20, 2024
1 parent 1110c1a commit 2ed91d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand All @@ -42,8 +42,8 @@ jobs:

# from https://github.com/codecov/codecov-action
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
files: ./coverage.xml
#fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true
5 changes: 3 additions & 2 deletions .github/workflows/publish-tagged-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'

- name: Install tox
run: |
Expand Down

0 comments on commit 2ed91d8

Please sign in to comment.