Skip to content

✏️ fix sync error #200

✏️ fix sync error

✏️ fix sync error #200

Workflow file for this run

name: Test & Track
on:
push:
branches:
- dev
- v2dev
- main
pull_request:
jobs:
test:
strategy:
matrix:
py_ver: ['3.9', '3.10', '3.11', '3.12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
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 sync
- name: Test & Report
run: |
pdm run test