task-rs: release 4.3.0 #21
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: CI | |
| # Run quality checks and Linux release builds on branches and pull requests. | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality: | |
| uses: ./.github/workflows/quality.yml | |
| # Exercise the Linux release path without running native platform jobs. | |
| build: | |
| uses: ./.github/workflows/build.yml | |
| with: | |
| artifact-prefix: ci | |
| retention-days: 7 | |
| linux-only: true |