Skip to content

Merge formatting checks with tests #100

Merge formatting checks with tests

Merge formatting checks with tests #100

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Bootstrap
run: make ci.bootstrap
- name: Test
run: make test