Skip to content

Commit

Permalink
adding templates
Browse files Browse the repository at this point in the history
  • Loading branch information
vsc1cob committed Jan 20, 2025
1 parent ad3bce4 commit 48997ba
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-and-artifact.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
name: Build and Artifact

on:
push:
branches:
- '**' # Trigger for all branches
pull_request:
branches:
- master # Trigger for pull requests targeting the master branch
workflow_dispatch: # Allow for manual trigger via GitHub UI

runs-on: self-hosted

steps:
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/setup-java-maven.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: Setup Java and Maven

runs-on: ubuntu-latest
on:
push:
branches:
- '**' # Trigger for all branches
pull_request:
branches:
- master # Trigger for pull requests targeting the master branch
workflow_dispatch: # Allow for manual trigger via GitHub UI

runs-on: self-hosted

steps:
# Checkout the repository
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/sonarcloud-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
name: SonarCloud Analysis

on:
push:
branches:
- '**' # Trigger for all branches
pull_request:
branches:
- master # Trigger for pull requests targeting the master branch
workflow_dispatch: # Allow for manual trigger via GitHub UI

runs-on: self-hosted
needs: build-and-artifact # Ensure the build and artifact job runs before the SonarCloud analysis job

steps:
# Checkout the repository
Expand Down

0 comments on commit 48997ba

Please sign in to comment.