Merge pull request #57 from yakushabb/fixtr #115
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: Run Python Tests | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.0.2 | |
- name: Install Python 3 | |
uses: actions/setup-python@v4.2.0 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
pip install flake8 mypy | |
- name: Run flake8 | |
run: | | |
flake8 . | |
- name: Run mypy | |
run: | | |
mypy src/ |