Skip to content

Commit

Permalink
Merge pull request #58 from usdot-jpo-ode/master
Browse files Browse the repository at this point in the history
Sync Develop Branch with Master for Q1 2024 Release Changes
  • Loading branch information
dan-du-car authored Feb 28, 2024
2 parents 248e26f + c930507 commit 5e4009f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches: [develop, master]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "temurin"
- name: Run Sonar
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
mvn -e -X clean org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar -Dsonar.projectKey=usdot-jpo-ode_jpo-s3-deposit -Dsonar.projectName=jpo-s3-deposit -Dsonar.organization=usdot-jpo-ode -Dsonar.host.url=https://sonarcloud.io -Dsonar.branch.name=$GITHUB_REF_NAME

0 comments on commit 5e4009f

Please sign in to comment.