Skip to content

chore(ci)(deps): bump docker/build-push-action from 6 to 7 #108

chore(ci)(deps): bump docker/build-push-action from 6 to 7

chore(ci)(deps): bump docker/build-push-action from 6 to 7 #108

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