Skip to content

chore(ci)(deps): bump docker/metadata-action from 5 to 6 #109

chore(ci)(deps): bump docker/metadata-action from 5 to 6

chore(ci)(deps): bump docker/metadata-action from 5 to 6 #109

Workflow file for this run

name: lint-test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: pip
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: ruff check .
- name: Type check
run: mypy
- name: Test
run: pytest -q