forked from ArkMowers/arknights-mower
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (36 loc) · 1 KB
/
pyinstaller-win-shawn.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# https://arkmowers.github.io/arknights-mower/dev/environment.html#auto-formatting
name: 代码格式检查与测试
on:
- push
- pull_request
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
- uses: chartboost/ruff-action@v1
with:
args: "format --check"
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: creyD/[email protected]
with:
dry: True
prettier_options: "--check ui/**/*.js ui/**/*.vue"
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
cache: pip
cache-dependency-path: requirements.txt
- run: |
python3.12 -m venv venv
./venv/bin/pip install -r requirements.txt
- run: |
./venv/bin/python3 -m unittest discover -s arknights_mower/tests -p "*_tests.py"