implementing snyk scanning using #5
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
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 |