Skip to content

Commit

Permalink
[tests] update github actions to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Oct 18, 2022
1 parent f08956b commit d9589a5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install packages
Expand All @@ -31,8 +31,8 @@ jobs:
- '3.8'
- '3.7'
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Disable firewall
Expand All @@ -48,14 +48,14 @@ jobs:
coverage run -m unittest discover -v
coverage xml
- name: Upload coverage report
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3

package:
runs-on: ubuntu-latest
needs: [lint, test]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install packages
Expand Down

0 comments on commit d9589a5

Please sign in to comment.