We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5c126a commit d300098Copy full SHA for d300098
1 file changed
.github/workflows/continuous.yml
@@ -31,20 +31,18 @@ jobs:
31
name: build
32
path: |
33
btrace-dist/build
34
- test:
35
- strategy:
36
- matrix:
37
- java: [8, 11, 17, 20]
38
- steps:
39
- - name: Set up Java ${{ matrix.java }}
40
- uses: actions/setup-java@v1
41
- with:
42
- java-version: ${{ matrix.java }}
43
- - name: Download build data
44
- uses: actions/download-artifact@v3
45
46
- name: build
47
- - name: Run tests
48
- run: ./gradlew test
49
-
50
+ test:
+ strategy:
+ matrix:
+ java: [8, 11, 17, 20]
+ steps:
+ - name: Set up Java ${{ matrix.java }}
+ uses: actions/setup-java@v1
+ with:
+ java-version: ${{ matrix.java }}
+ - name: Download build data
+ uses: actions/download-artifact@v3
+ name: build
+ - name: Run tests
+ run: ./gradlew test
0 commit comments