Skip to content

Commit

Permalink
Add workflow project1/RockyKumar2020.pipelines-java
Browse files Browse the repository at this point in the history
  • Loading branch information
RockyKumar2020 committed Nov 7, 2023
1 parent 0b248c7 commit 4357558
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/rockykumar2020.pipelines-java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: project1/RockyKumar2020.pipelines-java
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4.1.0
- name: Setup Java 8
uses: actions/setup-java@v3.13.0
with:
distribution: zulu
java-version: '8'
- name: Run maven
run: mvn --file pom.xml package
env:
MAVEN_OPTS: "-Xmx3072m"
- name: Publish test results
uses: EnricoMi/publish-unit-test-result-action@v2.11.0
if: always()
with:
junit_files: "**/surefire-reports/TEST-*.xml"

0 comments on commit 4357558

Please sign in to comment.