Fast tests #354
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: Fast tests | ||
| on: | ||
| # Run on every PR to master that is ready to review (i.e., not draft). | ||
| pull_request: | ||
| # https://github.community/t/dont-run-actions-on-draft-pull-requests/16817/19 | ||
| types: [opened, synchronize, reopened, ready_for_review] | ||
| branches: | ||
| - master | ||
| # Run for every change in master. | ||
| push: | ||
| branches: | ||
| # Comment this out to run when committing on the branch. | ||
| - master | ||
| # Run manually. | ||
| workflow_dispatch: | ||
| schedule: | ||
| # Run this once a day even if there are no commits. | ||
| - cron: '0 0 */1 * *' | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| run_fast_tests: | ||
|
Check failure on line 23 in .github/workflows/fast_tests.yml
|
||
| uses: causify-ai/helpers/.github/workflows/common_run_tests.yml@master | ||
| with: | ||
| test-name: run_fast_tests | ||