Exclude dir #22
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: Lean Action CI | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| - converted_to_draft | |
| - edited | |
| branches: | |
| - dev | |
| workflow_dispatch: | |
| # The jobs only build and test fixtures inside the runner's own checkout; the `gh` calls | |
| # made by lean-action read the public Mathlib cache and the public list of Lean releases. | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: leanprover/lean-action@v1 | |
| env: | |
| GH_TOKEN: ${{ github.token }} |