-
-
Notifications
You must be signed in to change notification settings - Fork 17
37 lines (35 loc) · 1.14 KB
/
check-python.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
name: Check Python code
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
env:
DISPLAY: ':99.0'
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
sudo apt-get update
sudo apt-get install -y libgl1-mesa-dev
- name: Analyze with mypy
run: |
mypy ./src/main/python
- name: Lint with flake8
run: |
flake8 ./src/main/python --ignore B011,E203,E501,E722,E731,W503,SIM119,SIM106
- uses: tlambert03/setup-qt-libs@v1
- name: Build "display"
run: |
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 -ac +extension GLX
- name: Test with pytest
run: |
pytest