Skip to content

reqs

reqs #12

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- name: setup python ${{matrix.python-version}}
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- name: install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: run tests
run: pytest
- name: mypy
run: mypy
- name: flake8
run: flake8