Skip to content

Commit

Permalink
set default inputs for java and os if none provided
Browse files Browse the repository at this point in the history
  • Loading branch information
jnewton03 committed Aug 11, 2023
1 parent 3197e84 commit acdc3ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/os-extension-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ jobs:
strategy:
fail-fast: false
matrix:
java: ${{fromJson(env.INPUT_JAVA)}}
os: ${{fromJson(env.INPUT_OS)}}
java: ${{fromJson(github.event.inputs.java || '[8, 11, 17, 18]')}}
os: ${{fromJson(github.event.inputs.os || '["ubuntu-latest", "windows-latest"]')}}
name: Test Java ${{ matrix.java }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
needs: build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pro-extension-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ jobs:
strategy:
fail-fast: false
matrix:
java: ${{fromJson(env.INPUT_JAVA)}}
os: ${{fromJson(env.INPUT_OS)}}
java: ${{fromJson(github.event.inputs.java || '[8, 11, 17, 18]')}}
os: ${{fromJson(github.event.inputs.os || '["ubuntu-latest", "windows-latest"]')}}
name: Test Java ${{ matrix.java }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
needs: build
Expand Down

0 comments on commit acdc3ed

Please sign in to comment.