Skip to content

Commit

Permalink
changed event rules to trigger on push to feature and bugfix branches…
Browse files Browse the repository at this point in the history
… on changes under met/src only
  • Loading branch information
georgemccabe committed Jan 20, 2022
1 parent d19ccfa commit 06c4527
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test_compilation.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Compilation Test

# Test that compilation succeeds
# for feature_ and bugfix_ branches
# when file(s) under met/src have changed

on:
push:
branches:
- feature_1546_ci_testing
paths-ignore:
- 'met/docs/**'
- 'feature_*'
- 'bugfix_*'
paths:
- 'met/src/**'

jobs:

Expand Down

0 comments on commit 06c4527

Please sign in to comment.