Skip to content

build(deps): bump actions/checkout from 4 to 7 #20

build(deps): bump actions/checkout from 4 to 7

build(deps): bump actions/checkout from 4 to 7 #20

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- run: pip install -r requirements.txt
- run: pip install pytest ruff
- run: ruff check app/ || true
- run: pytest tests/ -v || echo "No tests yet"