Skip to content

Commit

Permalink
Merge pull request #2 from RockyKumar2020/convert-project1-rockykumar…
Browse files Browse the repository at this point in the history
…2020pipelines-java-to-actions-20231107-074028

Convert project1/RockyKumar2020.pipelines-java to GitHub Actions
  • Loading branch information
RockyKumar2020 committed Nov 7, 2023
2 parents 0b248c7 + 4357558 commit 63904bb
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 63904bb

Please sign in to comment.