Skip to content

Merge pull request #120 from mii-10/master #67

Merge pull request #120 from mii-10/master

Merge pull request #120 from mii-10/master #67

Workflow file for this run

name: Check Checks
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pyright
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Check Typing
run: pyright
- name: Lint with flake8
run: flake8 . --count --max-line-length=999 --statistics