File tree Expand file tree Collapse file tree 1 file changed +24
-24
lines changed
Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Original file line number Diff line number Diff line change 1- name : CI
2- on :
3- push :
4- branches : [main]
5- pull_request :
6- branches : [main]
7- jobs :
8- build :
9- runs-on : ubuntu-latest
10- steps :
11- - uses : actions/checkout@v4
12- - name : Set up JDK 15
13- uses : actions/setup-java@v4
14- with :
15- java-version : 15
16- distribution : ' adopt'
17- - uses : gradle/gradle-build-action@v2
18- with :
19- arguments : build --scan
20- - name : Archive test report
21- uses : actions/upload-artifact@v4
22- with :
23- name : Test report
24- path : build/reports/tests/test
1+ # name: CI
2+ # on:
3+ # push:
4+ # branches: [main]
5+ # pull_request:
6+ # branches: [main]
7+ # jobs:
8+ # build:
9+ # runs-on: ubuntu-latest
10+ # steps:
11+ # - uses: actions/checkout@v4
12+ # - name: Set up JDK 15
13+ # uses: actions/setup-java@v4
14+ # with:
15+ # java-version: 15
16+ # distribution: 'adopt'
17+ # - uses: gradle/gradle-build-action@v2
18+ # with:
19+ # arguments: build --scan
20+ # - name: Archive test report
21+ # uses: actions/upload-artifact@v4
22+ # with:
23+ # name: Test report
24+ # path: build/reports/tests/test
You can’t perform that action at this time.
0 commit comments