Separated lint and test to 2 files

This commit is contained in:
Kristofers Solo 2023-04-12 10:35:48 +03:00
parent f9246064ef
commit f10fe979ce
2 changed files with 27 additions and 2 deletions

25
.github/workflows/lint.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Lint
on:
- push
- pull_request
jobs:
lint:
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 -r requirements_dev.txt
- name: Lint with mypy
run: mypy FOSSDB_web
- name: Lint with flake8
run: flake8 FOSSDB_web

View File

@ -18,6 +18,6 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install tox tox-gh-actions pip install -r requirements.txt
- name: Test with tox - name: Test with tox
run: tox run: python manage.py test