Skip to content

Bump actions/setup-python from 6 to 7 #2

Bump actions/setup-python from 6 to 7

Bump actions/setup-python from 6 to 7 #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
python: ['3.9', '3.11', '3.13']
steps:
- name: Check out repository
uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python }}
- name: Show runtime versions
run: |
bash --version | head -n1
python3 --version
timeout --version | head -n1
- name: Run syntax checks and regression suite
run: make check