Skip to content

Commit

Permalink
chore: use matrix strategy for jdk version
Browse files Browse the repository at this point in the history
  • Loading branch information
OmarAlJarrah committed Aug 9, 2024
1 parent 7fa2d77 commit 67841f0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/pr-check-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
name: Run Tests
on: push

jobs:
run-rapid-tests-21:
jobs:
run-rapid-tests:
strategy:
matrix:
jdk: [8, 11, 17, 21]
fail-fast: true
max-parallel: 1
uses: ./.github/workflows/run-tests.yaml
with:
source: 'specs'
specs_url: 'https://ewe-assets.s3.amazonaws.com/developer-tools/api/rapid/v3/specs.yaml'
sdk_version: 1.0.${{ github.run_id }}
sdk_namespace: 'rapid'
jdk: 21
jdk: ${{ matrix.jdk }}
endpoint_prefix: '/v3'
secrets: inherit

0 comments on commit 67841f0

Please sign in to comment.