Skip to content

test: assert full chain walk in hybrid test #29

test: assert full chain walk in hybrid test

test: assert full chain walk in hybrid test #29

Workflow file for this run

name: CI
on:
pull_request:
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- run: uv run --extra dev poe linters
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- run: uv run --python ${{ matrix.python-version }} --extra dev poe test
all-greens:
if: always()
needs: [linters, test]
runs-on: ubuntu-latest
steps:
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: exit 1