Skip to content

Bump gevent due to vulnerability #398

Bump gevent due to vulnerability

Bump gevent due to vulnerability #398

Workflow file for this run

name: Lint and Test
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '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 }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install -r requirements.txt
- name: Lint
run: |
make lint PYTHON_VERSION=${{ matrix.python-version }}
- name: Test
run: |
make test