Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Fix formulas

Fix formulas #14

Workflow file for this run

name: Tests
on: [ push, pull_request ]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install nox
- name: Run flake8
run: nox -s lint
- name: Run mypy
run: nox -s typing