We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aca31cf commit b3df9f7Copy full SHA for b3df9f7
1 file changed
.github/workflows/jacoco.yml
@@ -3,20 +3,19 @@ name: Java CI with JaCoCo
3
on:
4
push:
5
branches:
6
- - main
+ - feat/CS-36689-compare-merge-branch
7
8
jobs:
9
build-and-test:
10
runs-on: ubuntu-latest
11
12
steps:
13
- - name: Checkout code
14
- uses: actions/checkout@v2
15
-
16
- - name: Set up JDK 11
17
- uses: actions/setup-java@v2
+ - uses: actions/checkout@v3
+ - name: Code Coverage
+ uses: actions/setup-java@v3
18
with:
19
java-version: "11"
+ distribution: "adopt"
20
21
- name: Build with Maven
22
run: mvn clean package
0 commit comments