MyAnimeList CI #174
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MyAnimeList CI | |
on: [workflow_dispatch] | |
permissions: read-all | |
concurrency: | |
group: mal-test | |
cancel-in-progress: true | |
jobs: | |
mal_ci: | |
name: MyAnimeList CI [${{ matrix.auth }}] (Java ${{ matrix.java }}) | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
auth: ["Client", "Token"] | |
java: [8, 11, 17, 21, 23] | |
fail-fast: false | |
max-parallel: 1 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Java | |
uses: actions/setup-java@v4 | |
with: | |
architecture: x64 | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Load Client ID | |
if: matrix.auth == 'Client' | |
run: | | |
echo ${{ secrets.MAL_CLIENT }} > src/test/java/resources/client.txt | |
- name: Load OAuth Token | |
if: matrix.auth == 'Token' | |
run: | | |
echo ${{ secrets.MAL_TOKEN }} > src/test/java/resources/token.txt | |
- 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: MyAnimeList CI [${{ matrix.auth }}] (Java ${{ matrix.java }}) | |
token: ${{ steps.auth.outputs.token }} |