Skip to content

Commit

Permalink
Update test.yml (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinmw authored Nov 20, 2024
1 parent e0279e8 commit 4902e6b
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all branches and tags
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -40,7 +40,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand All @@ -65,8 +65,3 @@ jobs:
- name: Run tests
run: poetry run pytest

- name: Upload coverage
uses: codecov/codecov-action@v4
with:
files: reports/coverage.xml

0 comments on commit 4902e6b

Please sign in to comment.