Skip to content

Simplify SxPB setup parsing to requests-only format #24

Simplify SxPB setup parsing to requests-only format

Simplify SxPB setup parsing to requests-only format #24

Workflow file for this run

---
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pdm install
- name: Lint with PDM
run: pdm run lint
- name: Test with PDM
run: pdm run test