blob: 7138f69096e0689936aee1557636b0211889ad12 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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
|