Skip to content

chore(deps): bump actions/upload-pages-artifact from 3 to 4 #102

chore(deps): bump actions/upload-pages-artifact from 3 to 4

chore(deps): bump actions/upload-pages-artifact from 3 to 4 #102

Workflow file for this run

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