Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: launch test workflow also on release and bugfix branches #4426

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Loading