mbcp/.github/workflows/pytest.yml

28 lines
466 B
YAML
Raw Normal View History

2024-08-28 04:22:22 +08:00
name: pytest
on:
push:
branches:
- main
jobs:
2024-08-28 04:31:29 +08:00
RunPyTest:
2024-08-28 04:22:22 +08:00
runs-on: ubuntu-latest
2024-08-28 04:28:06 +08:00
name: Unit tests
steps:
2024-08-28 04:31:29 +08:00
- name: 配置Python
uses: actions/setup-python@v2
2024-08-28 04:28:06 +08:00
with:
2024-08-28 04:31:29 +08:00
python-version: '3.10'
- name: 安装依赖
run: |-
python -m pip install pdm
2024-08-28 04:35:21 +08:00
python -m pip install pytest==8.3.2
2024-08-28 04:34:50 +08:00
pdm init
2024-08-28 04:33:14 +08:00
pdm install
2024-08-28 04:34:50 +08:00
2024-08-28 04:31:29 +08:00
- name: 运行测试
2024-08-28 04:38:02 +08:00
run: ls