Skip to content

Commit

Permalink
ci: launch test workflow also on release and bugfix branches
Browse files Browse the repository at this point in the history
  • Loading branch information
ndr-brt committed Aug 21, 2024
1 parent 4b8b81f commit 4d21b62
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 113 deletions.
49 changes: 0 additions & 49 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.

34 changes: 0 additions & 34 deletions .github/workflows/pull-request.yaml

This file was deleted.

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

This file was deleted.

19 changes: 13 additions & 6 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- '**.md'
- 'docs/**'
pull_request:
branches: [ main, release/*, bugfix/* ]
paths-ignore:
- '**.md'
- 'docs/**'
Expand All @@ -21,6 +22,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 @@ -76,12 +85,6 @@ jobs:
INTEGRATION_TEST: true
JACOCO: "true"

# - name: 'Publish Test Results'
# uses: EnricoMi/publish-unit-test-result-action@v1
# if: always()
# with:
# files: "**/test-results/**/*.xml"

Integration-Tests:
runs-on: ubuntu-latest
env:
Expand Down Expand Up @@ -125,3 +128,7 @@ 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 4d21b62

Please sign in to comment.