FOSSDB/.github/workflows/lint.yml
Kristofers Solo 623c5e22ae Fix tests
2023-04-12 10:45:21 +03:00

26 lines
633 B
YAML

name: Lint
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy flake8
- name: Lint with mypy
run: mypy FOSSDB_web
- name: Lint with flake8
run: flake8 FOSSDB_web