Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
marph91 committed Nov 19, 2024
1 parent c5bf892 commit 4a37804
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install pip dependencies
run: pip install build twine
- name: Build binary wheel and source tarball
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
container:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install pip dependencies
run: pip install -r requirements-dev.txt
- name: Run linting
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
env:
SLOW_TESTS: 1
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: ${{ matrix.python-version }}
- name: Install system dependencies
Expand All @@ -35,15 +35,15 @@ jobs:
coverage report
coverage xml
- name: Publish Code Coverage Results
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v5
with:
files: ./test_output/coverage.xml
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: test_output/test_results.xml
- name: Archive all collected test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test_output
path: test_output/

0 comments on commit 4a37804

Please sign in to comment.