[Snyk] Security upgrade requests from 2.31.0 to 2.32.0 #169
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: Python application | |
on: | |
push: | |
branches: master | |
paths-ignore: | |
- "docs/**" | |
- README.md | |
pull_request: | |
branches: master | |
paths-ignore: | |
- "docs/**" | |
- README.md | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.8", "3.x"] | |
name: Python ${{ matrix.python }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python }} | |
architecture: x64 | |
- name: Install dependencies | |
run: make install | |
- name: Install dev dependencies | |
run: make install-dev | |
- name: Lint with flake8 | |
run: make lint | |
- name: Run tests | |
# For now, integration tests are limited to SQLite and not MySQL etc., | |
# so can run on Github. | |
run: make test |