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 29e2cd7 commit 8f624ac
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 94 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/checkstyle.yaml

This file was deleted.

50 changes: 0 additions & 50 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

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

This file was deleted.

20 changes: 19 additions & 1 deletion .github/workflows/test.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 ]
branches: [ main, release/*, bugfix/* ]
paths-ignore:
- '**.md'
- 'docs/**'
Expand All @@ -16,6 +16,24 @@ concurrency:
cancel-in-progress: true

jobs:

Checkstyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: eclipse-edc/.github/.github/actions/setup-build@main

- name: Run Checkstyle
run: ./gradlew checkstyleMain checkstyleTest

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

Unit-Tests:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 8f624ac

Please sign in to comment.