King safety: greatly reduce danger if the queen is not present for th… #1226
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: Clockwork | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| Formatting: | |
| uses: ./.github/workflows/clang-format.yml | |
| Compilation: | |
| uses: ./.github/workflows/compilation.yml | |
| Linter: | |
| uses: ./.github/workflows/linter.yml | |
| secrets: | |
| token: ${{ secrets.ACCESS_TOKEN }} | |
| Prerelease: | |
| needs: [Compilation] | |
| uses: ./.github/workflows/prerelease.yml | |
| secrets: | |
| token: ${{ secrets.ACCESS_TOKEN }} | |
| permissions: | |
| contents: write |