Skip to content

feat: refactored examples to match new grammar #10

feat: refactored examples to match new grammar

feat: refactored examples to match new grammar #10

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
check:
name: "Check Examples"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: examples
- name: Checkout pywire
uses: actions/checkout@v4
with:
repository: pywire/pywire
path: pywire
token: ${{ secrets.GH_PAT }}
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.12"
enable-cache: true
- name: Install dependencies
working-directory: examples
run: |
uv add --editable ../pywire
uv sync
- name: Run Checks
working-directory: examples
run: ./scripts/check