Skip to content

chore: no cover for loop set #57

chore: no cover for loop set

chore: no cover for loop set #57

Workflow file for this run

name: Test & Track
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
py_version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Ensure Python Runtime
with:
python-version: ${{ matrix.py_version }}
architecture: 'x64'
- name: Ensure PDM & twine
run: |
python3 -m pip install pdm
- name: Install Package
run: |
pdm install -d
- name: Test & Report
run: |
pdm run test
- uses: codecov/codecov-action@v3
with:
files: ./coverage.xml