Skip to content

fix: init wizard UX bugs + pipeline noise/retry #12

fix: init wizard UX bugs + pipeline noise/retry

fix: init wizard UX bugs + pipeline noise/retry #12

Workflow file for this run

name: ci
on:
push:
branches: [main, misa]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
- name: Install
run: pip install -e ".[dev]"
- name: Lint (ruff)
run: ruff check trace2skill tests
- name: Format check (ruff)
run: ruff format --check trace2skill tests
- name: Type check (pyright)
run: pyright trace2skill
- name: Tests
run: pytest -v