Skip to content

Commit

Permalink
ci: fix workflows for poetry config/update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Nov 16, 2023
1 parent 3c09e84 commit 54996b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
contents: read

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

- uses: actions/setup-python@v4
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.10' ]
python-version: [ '3.9', '3.11' ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install poetry && python -m poetry install
- name: Test
run: pytest -svv --cov=fasta_checksum_utils --cov-branch
- name: Codecov
run: codecov
run: poetry run pytest -svv --cov=fasta_checksum_utils --cov-branch
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3

0 comments on commit 54996b8

Please sign in to comment.