fix: 尝试修复已不存在的 bot
属性引用 #36
#46
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: | |
- 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: Set up Python ${{ matrix.py_ver }} | |
with: | |
python-version: ${{ matrix.py_ver }} | |
architecture: 'x64' | |
- name: Ensure PDM | |
run: | | |
python -m pip install pdm | |
- name: install | |
run: | | |
pdm sync -G:all -v | |
- name: test | |
run: | | |
pdm run test |