🐛 fix fxxk ob11::mface.emoji_package_id with string type for unkn… #307
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 |