Skip to content

Provide a nicer, type-safe way of adding calls to the batch #449

Provide a nicer, type-safe way of adding calls to the batch

Provide a nicer, type-safe way of adding calls to the batch #449

Workflow file for this run

name: Test
on:
- push
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
- run: make dev
- run: make test
format:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
- run: make dev
- run: make fmt-check