👺 v1.0.0: formatting tweaks + dev env enhancements #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |