Add cosmetic overclocks #171
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |