More tests #69
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
# This workflow will: | |
# - install Python dev dependencies | |
# - run black, isort, flake8, mypy and pytest | |
name: Python application | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: make setup-dev | |
- name: Lint with flake8 | |
run: make flake8 | |
- name: Run formatters | |
run: make format-check | |
- name: Typecheck with mypy | |
run: make mypy | |
- name: Check script | |
run: btac --version | |
- name: Test with pytest | |
run: make test |