Skip to content

[NRT-34] Allow extra local fields #98

[NRT-34] Allow extra local fields

[NRT-34] Allow extra local fields #98

Workflow file for this run

name: tests
on:
push:
branches: [master]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: 'pip'
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: "5.15.2"
setup-python: "false"
- name: Install requirements
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run pre-commit
run: pre-commit run --all-files
- name: Run mypy
run: |
python -m mypy src
- name: Run tests
run: |
pytest tests