Skip to content

Separate the SimplePreprocessor and use for both MagicFlags and Heade… #52

Separate the SimplePreprocessor and use for both MagicFlags and Heade…

Separate the SimplePreprocessor and use for both MagicFlags and Heade… #52

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13, pypy-3.11]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential pkg-config libsystemd-dev
- name: Install UV
run: pip install uv
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run python -m unittest discover src/compiletools