Skip to content

try fix

try fix #92

Workflow file for this run

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