Skip to content

Commit

Permalink
remove junit
Browse files Browse the repository at this point in the history
  • Loading branch information
Katsute authored Dec 11, 2024
1 parent 3460c8f commit 275a6d0
Showing 1 changed file with 1 addition and 34 deletions.
35 changes: 1 addition & 34 deletions .github/workflows/mta_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,37 +40,4 @@ jobs:
run: echo ${{ matrix.group }} > src/test/java/resources/TEST_GROUP

- name: Test with Maven
continue-on-error: true
run: mvn test -fae --no-transfer-progress

- name: Check Token
run: |-
if [ "${{ secrets.KDEVBOT_PRIVATE_KEY }}" != '' ]
then
echo "authenticated=true" >> $GITHUB_ENV;
fi
- name: Authenticate
id: auth
if: ${{ env.authenticated }}
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.KDEVBOT_APP_ID }}
private-key: ${{ secrets.KDEVBOT_PRIVATE_KEY }}
owner: KatsuteDev

- name: Checkout JUnit Report
if: ${{ env.authenticated }}
uses: actions/checkout@v4
with:
repository: KatsuteDev/junit-report
ref: bc106f1790b25d6fe951a9baab3816fec37ac33d
path: ./.junit-report
token: ${{ steps.auth.outputs.token }}

- name: Generate Report
if: ${{ env.authenticated }}
uses: ./.junit-report
with:
job: MTA CI [${{ matrix.group }}] (Java ${{ matrix.java }})
token: ${{ steps.auth.outputs.token }}
run: mvn test -fae --no-transfer-progress

0 comments on commit 275a6d0

Please sign in to comment.