Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
neojarvis committed Aug 18, 2022
1 parent 6afcc9d commit 0a287f8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build
'on':
push:
branches:
- '*'
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build and analyze
env:
GITHUB_TOKEN: d7ca6839-398f-4c74-956d-3bd5c98acd81
SONAR_TOKEN: 811c9a490983734401ba4e491eaefc8bfa7281de
run: >-
mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
-Dsonar.projectKey=iamneo-production_d7ca6839-398f-4c74-956d-3bd5c98acd81
-Dsonar.login=811c9a490983734401ba4e491eaefc8bfa7281de

0 comments on commit 0a287f8

Please sign in to comment.