Add proper help and default values for a number of the options #4336
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: Build application | |
| on: | |
| push: | |
| pull_request: | |
| merge_group: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: >- | |
| ${{ github.ref != 'refs/heads/master' && | |
| github.event_name != 'merge_group' && | |
| !startsWith(github.ref, 'refs/heads/gh-readonly-queue') }} | |
| jobs: | |
| pre-commit: | |
| uses: ./.github/workflows/pre-commit.yml | |
| ubuntu: | |
| needs: | |
| - pre-commit | |
| uses: ./.github/workflows/ubuntu.yml | |
| mac: | |
| needs: | |
| - pre-commit | |
| uses: ./.github/workflows/mac.yml | |
| windows: | |
| needs: | |
| - pre-commit | |
| uses: ./.github/workflows/windows.yml | |
| perf: | |
| needs: | |
| - ubuntu | |
| - mac | |
| - windows | |
| uses: ./.github/workflows/perf.yml | |
| pages: | |
| needs: | |
| - perf | |
| uses: ./.github/workflows/pages.yml |