Skip to content

Commit

Permalink
[CI] Run CI on maintenance branches (#1149)
Browse files Browse the repository at this point in the history
* run linter on maint branches

* run unit tests on maint branches

* run converter non regression tests on maint branches

* run instantiation tests on maint branches
  • Loading branch information
NicolasGensollen authored Apr 24, 2024
1 parent 81e0586 commit f4c10f5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Lint

on:
push:
branches: [ dev ]
branches: [ "dev", "maint-*" ]
pull_request:
branches: [ dev ]
branches: [ "dev", "maint-*" ]

permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Unit Tests

on:
push:
branches: [dev]
branches: ["dev", "maint-*"]
pull_request:
branches: [dev]
branches: ["dev", "maint-*"]

permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_converters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Non Regression Tests - Converters

on:
push:
branches: [dev]
branches: ["dev", "maint-*"]
pull_request:
branches: [dev]
branches: ["dev", "maint-*"]

permissions:
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_instantiation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Instantiation Tests

on:
push:
branches: [dev]
branches: ["dev", "maint-*"]
pull_request:
branches: [dev]
branches: ["dev", "maint-*"]

permissions:
contents: read
Expand Down

0 comments on commit f4c10f5

Please sign in to comment.