Skip to content

Debugging

Debugging #653

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
test:
name: Tests
runs-on: ${{ matrix.os.run }}
strategy:
matrix:
os:
- {run: macos-latest, dist: dist-macos-x86_64}
python:
- '3.10'
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: mxschmitt/action-tmate@v3