Skip to content

chore: adds semgrep pre-commit and CI action #76

chore: adds semgrep pre-commit and CI action

chore: adds semgrep pre-commit and CI action #76

Workflow file for this run

---
name: Code Coverage Check
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up poetry and install
uses: ./.github/actions/setup-poetry
with:
python-version: "3.9"
- name: Run tests
run: make test-code-cov
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: coverage
path: coverage.xml