Skip to content

chore: bump version to 0.5.3 #40

chore: bump version to 0.5.3

chore: bump version to 0.5.3 #40

Workflow file for this run

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