Skip to content

Commit

Permalink
Merge pull request #68 from stweil/master
Browse files Browse the repository at this point in the history
Update used GitHub actions to latest releases
  • Loading branch information
yschneider-sinneria authored Sep 15, 2023
2 parents 24309fb + adf319c commit f0c4333
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Run pre-commit
Expand All @@ -30,14 +30,14 @@ jobs:
matrix:
python: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install requirements
run: pip install .[test]
- name: Run pytest
run: pytest --cov=laia tests
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
# upload coverage only for main job
if: ${{ matrix.python == '3.8' }}

0 comments on commit f0c4333

Please sign in to comment.