Skip to content

Commit 5fd97af

Browse files
committed
update test workflow to support workflow dispatch, not fail fast, and to add oracle distribution
1 parent ef3cd49 commit 5fd97af

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
11
name: Test
22

3-
on: [push]
3+
on:
4+
push:
5+
workflow_dispatch:
46

57
jobs:
68
test:
79
strategy:
10+
fail-fast: false
811
matrix:
912
os: [ubuntu-latest] # macOS-latest, windows-latest]
1013
java-version: ["8", "11", "17"]
1114
distribution: ["temurin", "corretto"]
1215
profile: ["test-direct", "test-no-direct"]
16+
include:
17+
- distribution: "oracle"
18+
java-version: "17"
1319
runs-on: ${{ matrix.os }}
1420
steps:
1521
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)