Skip to content

Commit

Permalink
.github: run test workflows for all branches
Browse files Browse the repository at this point in the history
Signed-off-by: Jakob Hahn <[email protected]>
  • Loading branch information
Jakob3xD committed Sep 28, 2023
1 parent d61c660 commit 23e7f05
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 30 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
name: Link Checker
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"

on: [push, pull_request]

jobs:
linkchecker:
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Lint check

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

env:
GITHUB_ACTIONS: true
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Integration for Compatibility
on: [push, pull_request]

jobs:
integration-test-compatibility:
integ-test-compat:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -22,6 +22,8 @@ jobs:
- { opensearch_version: 2.6.0 }
- { opensearch_version: 2.7.0 }
- { opensearch_version: 2.8.0 }
- { opensearch_version: 2.9.0 }
- { opensearch_version: 2.10.0 }
steps:
- uses: actions/checkout@v3
with: { fetch-depth: 1 }
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Integration

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

env:
GITHUB_ACTIONS: true
Expand Down Expand Up @@ -57,4 +51,4 @@ jobs:
- name: Launch OpenSearch cluster
run: |
make cluster.clean cluster.build cluster.start
- run: make test-integ-secure
- run: make test-integ-secure
8 changes: 1 addition & 7 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Unit

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

env:
GITHUB_ACTIONS: true
Expand Down

0 comments on commit 23e7f05

Please sign in to comment.