refactor: unify types facade, split into sub-files, fix CI #5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Examples E2E | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'examples/**' | |
| - '.github/scripts/ci-examples.sh' | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - 'examples/**' | |
| - '.github/scripts/ci-examples.sh' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| examples-e2e: | |
| name: Build & smoke-run examples | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Download modules | |
| run: go mod download | |
| - name: E2E examples | |
| run: bash .github/scripts/ci-examples.sh |