Skip to content

pages: configure, upload web/, deploy #15

pages: configure, upload web/, deploy

pages: configure, upload web/, deploy #15

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install
run: |
python -m pip install -U pip
pip install -e ".[dev]"
- name: Lint
run: |
ruff check .
black --check .
- name: Tests
run: pytest --maxfail=1 --disable-warnings -q