Skip to content

Commit

Permalink
ci: launch test workflow also on release and bugfix branches (#4426)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt authored Aug 21, 2024
1 parent 70d1b54 commit ff05623
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 79 deletions.
50 changes: 0 additions & 50 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/dependency-check.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .github/workflows/verify-openapi.yml

This file was deleted.

19 changes: 14 additions & 5 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
push:
pull_request:
branches: [ main, refactor/* ]
branches: [ main, release/*, bugfix/* ]
paths-ignore:
- "**.md"
- "docs/**"
Expand All @@ -17,10 +17,6 @@ concurrency:

jobs:
Checkstyle:
permissions:
id-token: write
checks: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -29,6 +25,14 @@ jobs:
- name: Run Checkstyle
run: ./gradlew checkstyleMain checkstyleTest checkstyleTestFixtures

CodeQL:
uses: eclipse-edc/.github/.github/workflows/codeql-analysis.yml@main
secrets: inherit

Dependency-Check:
uses: eclipse-edc/.github/.github/workflows/dependency-check.yml@main
secrets: inherit

Javadoc:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -150,3 +154,8 @@ jobs:
path: artifacts
- name: CodeCov
uses: codecov/codecov-action@v4

Verify-OpenApi:
uses: eclipse-edc/.github/.github/workflows/verify-openapi.yml@main
secrets: inherit

0 comments on commit ff05623

Please sign in to comment.