ci: fix invalid YAML in the VS Code extension release workflow #364
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: macOS ARM Lint | |
| on: | |
| push: | |
| branches: [main] | |
| # Pull requests run macos-arm-live-test.yml instead: it cross-compiles on | |
| # Linux and holds a macOS runner only to execute the result. | |
| workflow_dispatch: | |
| # One live run per workflow per ref: a new push to a branch or PR cancels the | |
| # superseded run instead of queuing behind it in the shared account-wide runner | |
| # pool. Runs on main get a unique group, so they are never cancelled or coalesced. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| call: | |
| uses: ./.github/workflows/_lint.yml | |
| with: | |
| runs-on: macos-15 |