Skip to content

fix: typo in readme #13

fix: typo in readme

fix: typo in readme #13

Workflow file for this run

name: Run tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.8
cache: 'pip'
cache-dependency-path: setup.py
- run: pip install -e .
- name: Upgrade pip
run: python -m pip install --upgrade pip setuptools
- name: install requirements
run: pip install -r requirements/dev.txt
- name: Static code analysis
run: make test-lint
- name: Python unit tests
run: make test-unit
- name: Static type checks
run: make test-types
- name: Code formatting
run: make test-format