Skip to content

Correctly update UI files with pyuic5 #20

Correctly update UI files with pyuic5

Correctly update UI files with pyuic5 #20

Workflow file for this run

name: Lint
"on":
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Check formatting with black
run: |
black --check .
- name: Lint with ruff
run: |
ruff .