Merge pull request #29 from Algo-Boys/plot #78
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: Format | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install -U pip poetry | |
poetry --version | |
poetry check --no-interaction | |
poetry config virtualenvs.in-project true | |
poetry install --no-interaction | |
- name: Check for format issues | |
run: | | |
make format-check | |
- name: Run pylint | |
run: | | |
poetry run pylint --fail-under=9 swr2_asr | |
# run: | | |
# poetry run mypy --strict swr2_asr | |
#- name: Run mypy |