Skip to content

implementing snyk scanning using #5

implementing snyk scanning using

implementing snyk scanning using #5

Workflow file for this run

on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
cache: pip
- name: Install dependencies
run: make requirements
- name: Install test runner
run: pip install pytest pytest-cov
- name: Run unit tests
run: pytest --cov=src