Skip to content

Commit

Permalink
chore: Fixed formatting of examples and running multiple JDKs was dum…
Browse files Browse the repository at this point in the history
…b, got rid of it
  • Loading branch information
vemilyus committed Aug 10, 2023
1 parent 35d0e0c commit 9de62b7
Show file tree
Hide file tree
Showing 2 changed files with 257 additions and 260 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java-version: [ 11, 17 ]
fail-fast: false

steps:
Expand All @@ -33,26 +32,26 @@ jobs:
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
java-version: 11

- name: Cache Test Artifacts
uses: actions/cache@v3
with:
path: .artifacts
key: artifacts-${{ hashFiles('**/Artifacts.java') }}

- name: Setup FFmpeg (${{ runner.os }}, JDK ${{ matrix.java-version }})
- name: Setup FFmpeg (${{ runner.os }})
uses: FedericoCarboni/setup-ffmpeg@v2

- name: Build (${{ runner.os }}, JDK ${{ matrix.java-version }})
- name: Build (${{ runner.os }})
uses: burrunan/gradle-cache-action@v1
with:
arguments: --console=plain build

- name: Test Report (${{ runner.os }}, JDK ${{ matrix.java-version }})
- name: Test Report (${{ runner.os }})
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Test Report (${{ runner.os }}, JDK ${{ matrix.java-version }})
name: Test Report (${{ runner.os }})
reporter: java-junit
path: '**/TEST-*.xml'
Loading

0 comments on commit 9de62b7

Please sign in to comment.