Files
pyGUI/.gitea/workflows/ci.yml
T
jack 3675f0722a
CI / preflight (push) Waiting to run
ci: add Gitea Actions preflight workflow
2026-07-13 12:33:51 -07:00

36 lines
646 B
YAML

name: CI
on:
push:
branches: ["**"]
pull_request:
env:
QT_QPA_PLATFORM: offscreen
jobs:
preflight:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Qt runtime libs
run: sudo apt-get update && sudo apt-get install -y libegl1 libgl1 libxkbcommon0 libfontconfig1 libdbus-1-3
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
python-version: "3.11"
- name: Install dependencies
run: uv sync
- name: Lint
run: make lint
- name: Typecheck
run: make typecheck
- name: Test
run: make test