Skip to content

🐛 make tests running #229

🐛 make tests running

🐛 make tests running #229

Workflow file for this run

name: Unit tests
on: [push]
jobs:
build:
name: ${{ matrix.os }} / ${{ matrix.python_version }}
runs-on: ${{matrix.os}}-latest
strategy:
matrix:
os: [Ubuntu]
python-version: ["3.9.16"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
- name: Lint with flake8
run: |
make install_test format git-diff-check lint
- name: Test with pytest
run: |
pip install -r tests/requirements.txt
make