-
Notifications
You must be signed in to change notification settings - Fork 28
99 lines (92 loc) · 2.57 KB
/
build.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: Run Tests
on: ['push', 'pull_request']
jobs:
mypy:
name: mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10.6'
cache: 'pipenv'
- uses: PennyDreadfulMTG/setup-linters@main
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv wheel
if [ -f Pipfile ]; then pipenv sync --dev; fi
- name: Run mypy
run: pipenv run python dev.py mypy
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pipenv'
- uses: PennyDreadfulMTG/setup-linters@main
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv wheel pydantic
if [ -f Pipfile ]; then pipenv sync --dev; fi
- name: Run flake8
run: pipenv run python dev.py lint
test:
name: test
runs-on: ubuntu-latest
env:
mysql_user: root
mysql_passwd: bad-password
mysql_host: 127.0.0.1
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pipenv'
- uses: getong/mariadb-action@v1.11
with:
mysql root password: bad-password
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv wheel
if [ -f Pipfile ]; then pipenv sync --dev; fi
- uses: PennyDreadfulMTG/setup-linters@main
- run: pipenv run init-cards
- name: Run pytest
run: |
pipenv run pytest
pipenv run python dev.py upload-coverage
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5.2.0
if: always() # always run even if the previous step fails
with:
report_paths: '**/TestResults.xml'
check_name: 'Pytest Results'
jslint:
name: jslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pipenv'
- name: Setup Node.js environment
uses: actions/setup-node@v4.1.0
with:
node-version: 18.16.0
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv wheel
python build.py
- name: Run jslint
run: pipenv run python dev.py jslint