Remove drf yasg #199
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code quality checks | |
# Run this workflow every time a new commit pushed to your repository | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- '*' | |
paths: | |
- '**.py' | |
pull_request: | |
paths: | |
- '**.py' | |
workflow_dispatch: | |
jobs: | |
linting: | |
name: Code-quality checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toxenv: | |
- isort | |
- black | |
- docs | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install pip dependencies | |
run: pip install tox tox-gh-actions | |
- name: Install system dependencies | |
run: | | |
sudo apt-get update \ | |
&& sudo apt-get install -y --no-install-recommends \ | |
libgdal-dev \ | |
gdal-bin | |
- run: tox | |
env: | |
TOXENV: ${{ matrix.toxenv }} |