🔥 测试工作流 #8
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: pytest | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
RunPyTest: | |
runs-on: ubuntu-latest | |
name: Unit tests | |
steps: | |
- name: 配置Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: 安装依赖 | |
run: |- | |
python -m pip install pdm | |
python -m pip install pytest==8.3.2 | |
pdm init | |
pdm install | |
- name: 运行测试 | |
run: python -m pytest |