Skip to content

fix: test_requirements.txt to reduce vulnerabilities #30

fix: test_requirements.txt to reduce vulnerabilities

fix: test_requirements.txt to reduce vulnerabilities #30

Workflow file for this run

name: Tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.9"
architecture: "x64"
- name: Run tests
run: |
pip install pip wheel -U
pip install -r test_requirements.txt
pip install -e .
flake8
pytest src/tests