Skip to content

Improve IL pipeline, split GUI modules, and add CI infrastructure. #1

Improve IL pipeline, split GUI modules, and add CI infrastructure.

Improve IL pipeline, split GUI modules, and add CI infrastructure. #1

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dev dependencies
run: python -m pip install --upgrade pip pytest
- name: Run tests
run: python -m pytest tests -q