This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
97 lines (93 loc) · 2.88 KB
/
ci.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
name: CI
on:
push:
branches: [ main ]
paths:
- '.github/workflows/*.yml'
- '**/*.py'
- 'requirements.txt'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/*.yml'
- '**/*.py'
- 'requirements.txt'
permissions:
actions: read
contents: write
issues: read
checks: write
pull-requests: write
jobs:
unit-test:
name: Run unit test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install System Dependencies
run: |
sudo apt update
sudo apt install -y --no-install-recommends \
fonts-freefont-ttf libc6 libfreetype6 libjpeg8 \
libpng16-16 libportmidi0 libsdl2-2.0-0 \
libsdl2-image-2.0-0 libsdl2-mixer-2.0-0 libsdl2-ttf-2.0-0
- name: Install PIP dependencies
run: python3 -m pip install -r requirements.txt
- name: Run PyTest
run: pytest --junit-xml=pytest.xml $(find test -name '*.py')
env:
PYTHONPATH: ${{ github.workspace }}
- name: Publish Test Results
if: ${{ always() }}
uses: EnricoMi/publish-unit-test-result-action@v2
with:
junit_files: "**/*.xml"
style-check:
name: Run style check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install System Dependencies
run: |
sudo apt update
sudo apt install -y --no-install-recommends \
fonts-freefont-ttf libc6 libfreetype6 libjpeg8 \
libpng16-16 libportmidi0 libsdl2-2.0-0 \
libsdl2-image-2.0-0 libsdl2-mixer-2.0-0 libsdl2-ttf-2.0-0
- name: Install PIP dependencies
run: python3 -m pip install -r requirements.txt
- name: Run Black Formatter
id: blackcheck
uses: psf/black@stable
with:
version: "~= 23.0"
- name: Apply Black style
if: ${{ github.event_name != 'pull_request' && failure() && steps.blackcheck.conclusion == 'failure' }}
uses: psf/black@stable
with:
options: ""
jupyter: true
- name: Commit style-changed code
if: ${{ github.event_name != 'pull_request'&& failure() && steps.blackcheck.conclusion == 'failure' }}
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add *
git commit -m "Format using Black"
- name: Push changes
if: ${{ github.event_name != 'pull_request' && failure() && steps.blackcheck.conclusion == 'failure' }}
uses: ad-m/github-push-action@master
with:
branch: ${{ github.ref }}