Skip to content
This repository was archived by the owner on Aug 11, 2026. It is now read-only.

chore(security): clear Dependabot high Python and npm advisories #108

chore(security): clear Dependabot high Python and npm advisories

chore(security): clear Dependabot high Python and npm advisories #108

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Run tests and collect coverage
run: |
pytest --cov --cov-report xml
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }}