chore(deps): bump actions/checkout from 4 to 5 #101
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install Hatch | |
uses: pypa/hatch@install | |
- name: Configure pip caching | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml')}} | |
- name: Validate with flake8, black, isort, mypy | |
run: hatch run lint | |
test: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install Hatch | |
uses: pypa/hatch@install | |
- name: Configure pip caching | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml')}} | |
- name: Run tests | |
run: hatch run test | |
- name: Upload code coverage | |
uses: codecov/codecov-action@v5 |