Skip to content

Commit

Permalink
chore: update test.yml due to GH Action deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
gcushen authored Sep 15, 2023
1 parent cf7857b commit de1d1a3
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.11]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -32,5 +32,7 @@ jobs:
pipenv run isort --profile black --recursive --diff .
pipenv run black --check .
- name: Report Coverage
if: matrix.python-version == '3.8'
uses: codecov/[email protected]
if: matrix.python-version == '3.11'
uses: codecov/codecov-action@v3
with:
verbose: true

0 comments on commit de1d1a3

Please sign in to comment.