[#9027] dump: copy datastore_search preamble #27
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: Test | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| workflow_call: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} # workflow limits it to this workflow, ref includes a pushed branch or on pull request merge branch | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
| permissions: | |
| contents: read | |
| jobs: | |
| ruff: | |
| name: Lint (Ruff) | |
| uses: ./.github/workflows/ruff.yml # Call the reusable workflow | |
| secrets: inherit | |
| pyright: | |
| name: Lint (PyRight) | |
| uses: ./.github/workflows/pyright.yml # Call the reusable workflow | |
| secrets: inherit | |
| cypress: | |
| name: Test (Cypress) | |
| uses: ./.github/workflows/cypress.yml # Call the reusable workflow | |
| secrets: inherit | |
| docs: | |
| name: Documentation | |
| uses: ./.github/workflows/docs.yml # Call the reusable workflow | |
| secrets: inherit | |
| pytest: | |
| name: Test (Pytest) | |
| uses: ./.github/workflows/pytest.yml # Call the reusable workflow | |
| secrets: inherit |