Skip to content

Setup dependency scans on monthly intervals #97

Setup dependency scans on monthly intervals

Setup dependency scans on monthly intervals #97

Workflow file for this run

name: Code Coverage
on:
push:
pull_request:
branches: [ master ]
jobs:
coverage:
if: github.repository_owner == 'arkq'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Generate Coverage Report
run: |
python -m pip install --upgrade pip
pip install coverage setuptools
coverage run --include=src/* setup.py pytest
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}