Skip to content

Experiments for each dialect #306

Experiments for each dialect

Experiments for each dialect #306

Workflow file for this run

---
name: "CI"
on:
push:
branches:
- main
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- name: Install dependencies
run: pip install -q ".[dev,test]"
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#using-ruff-to-lint-code
- name: Ruff
run: ruff check --output-format=github .
continue-on-error: true
- name: Mypy
run: mypy .
# https://github.com/codecov/example-python
- name: Pytest
run: pytest --cov=src --cov-report=xml
- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}