Simplify test workflow #337
Workflow file for this run
This file contains 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: 'Run Goalie test suite' | ||
on: | ||
# Run test suite whenever main is updated | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '**.py' | ||
- '**.msh' | ||
- '**.geo' | ||
- '.github/workflows/test_suite.yml' | ||
# Run test suite whenever commits are pushed to an open PR | ||
pull_request: | ||
paths: | ||
- '**.py' | ||
- '**.msh' | ||
- '**.geo' | ||
- '.github/workflows/test_suite.yml' | ||
# Run test suite every Sunday at 1AM | ||
schedule: | ||
- cron: '0 1 * * 0' | ||
jobs: | ||
test_suite: | ||
uses: mesh-adaptation/docs/.github/workflows/reusable_test_suite.yml@simplify_test | ||
Check failure on line 28 in .github/workflows/test_suite.yml GitHub Actions / Run Goalie test suiteInvalid workflow file
|