Skip to content

[Snyk] Security upgrade requests from 2.31.0 to 2.32.0 #169

[Snyk] Security upgrade requests from 2.31.0 to 2.32.0

[Snyk] Security upgrade requests from 2.31.0 to 2.32.0 #169

Workflow file for this run

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