fix: simulators call af.ex.util, and the chain-run resolves in a notebook (PENDING RELEASE)
#138
Workflow file for this run
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: Navigator Check | |
| # Thin caller for PyAutoHands's reusable navigator-catalogue check. The check | |
| # logic (path/banner lint + catalogue staleness) and its entrypoints live in | |
| # PyAutoHands/autohands; this repo only declares which generator project to run. | |
| # See PyAutoLabs/PyAutoHands/.github/workflows/navigator_check.yml. | |
| # One run per commit: PR events carry the CI; pushes only build main | |
| # (Heart's ws_ci gate reads main-HEAD conclusions). Superseded runs are | |
| # cancelled on PR refs only — a cancelled main run would read as red CI | |
| # (cancelled is in Heart's FAILURE_CONCLUSIONS). | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| concurrency: | |
| group: navigator_check-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| navigator: | |
| uses: PyAutoLabs/PyAutoHands/.github/workflows/navigator_check.yml@main | |
| with: | |
| project: howtofit |