Style fixes #453
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: cicd-pr | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, review_requested, ready_for_review] | |
| branches: | |
| - main | |
| jobs: | |
| build-and-test: | |
| # Don't run when the pull request is a draft | |
| if: github.event.pull_request.draft == false | |
| # We only run on windows and macos here, since ubuntu already handled by the cicd-feature workflow on the push action. | |
| uses: ./.github/workflows/build-and-test.yml |