fix: eval code in message template #306
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test & Track | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'README.md' | |
- 'docs.md' | |
- 'example/**' | |
- 'intro.md' | |
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 -G:all -v | |
- name: Test & Report | |
run: | | |
pdm run test |