Skip to content

👺 v1.0.0: formatting tweaks + dev env enhancements #50

👺 v1.0.0: formatting tweaks + dev env enhancements

👺 v1.0.0: formatting tweaks + dev env enhancements #50

Workflow file for this run

name: CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '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 pipenv
pipenv install --dev
- name: Check code formatting with black
run: |
pipenv run black --check .
- name: Check imports with isort
run: pipenv run isort . --check-only
- name: Lint with flake8
run: pipenv run flake8 src/
- name: Run pytest
run: |
pipenv run pytest