Skip to content

Preserve coords on atomic TypeDecl #279

Preserve coords on atomic TypeDecl

Preserve coords on atomic TypeDecl #279

Workflow file for this run

name: pycparser-tests
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Set up uv
uses: astral-sh/setup-uv@v3
- name: Install make (Windows)
if: runner.os == 'Windows'
run: choco install make -y
- name: Check
run: make check
- name: Test
run: make test