We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d04cf commit 1008e8eCopy full SHA for 1008e8e
1 file changed
.github/workflows/ci.yml
@@ -12,10 +12,10 @@ jobs:
12
fail-fast: false
13
matrix:
14
os: [ubuntu-latest]
15
- java-version: ['9', '11', '13', '17']
+ java-version: [9, 11, 13, 17]
16
include:
17
- os: windows-latest
18
- java-version: '12'
+ java-version: 12
19
steps:
20
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
21
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
@@ -28,6 +28,10 @@ jobs:
28
- name: Build and test dogstatsd-http-core
29
run: mvn clean install
30
working-directory: dogstatsd-http-core
31
+ - name: Build and test dogstatsd-http-forwarder
32
+ if: matrix.java-version >= 11
33
+ run: mvn clean install
34
+ working-directory: dogstatsd-http-forwarder
35
36
test-jnr-exclude:
37
name: Test (Java 9, jnr-exclude)
0 commit comments