Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Run Movement test suite'
name: 'Run Movement test suite (main)'

on:
# Run test suite whenever main is updated
# Run test suite whenever the main branch is updated
push:
branches:
- main
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/test_suite_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: 'Run Movement test suite (release)'

on:
# Run test suite whenever the release branch is updated
push:
branches:
- release
paths:
- '.github/workflows/test_suite_release.yml'

# Run test suite whenever commits that change this workflow are pushed to an open PR
pull_request:
paths:
- '.github/workflows/test_suite_release.yml'

# Run test suite at 3AM on the first of the month
schedule:
- cron: '0 3 1 * *'

jobs:
test_suite:
uses: mesh-adaptation/docs/.github/workflows/reusable_test_suite.yml@main
with:
docker-image: 'firedrake-parmmg:release'