Skip to content

Commit ea33dc8

Browse files
committed
init commit
0 parents commit ea33dc8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1498
-0
lines changed

.github/workflows/java.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Java
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
- name: Setup JDK 11
18+
uses: actions/setup-java@v2
19+
with:
20+
distribution: zulu
21+
java-version: 11
22+
- name: Grant execution permission for gradlew
23+
run: chmod +x gradlew
24+
- name: Cache Gradle packages
25+
uses: actions/cache@v1
26+
with:
27+
path: ~/.gradle/caches
28+
key: ${{ runner.os }}-gradle-${{ github.event.repository.name }}-${{ hashFiles('**/*.gradle')}}
29+
restore-keys: ${{ runner.os }}-gradle-${{ github.event.repository.name }}
30+
- name: Build with Gradlew
31+
run: ./gradlew build
32+
- name: Test with Gradlew
33+
run: ./gradlew :test --tests "SolutionTest"
48.2 KB
Binary file not shown.
17 Bytes
Binary file not shown.
1 Byte
Binary file not shown.
19 KB
Binary file not shown.
17 Bytes
Binary file not shown.
18.4 KB
Binary file not shown.

.gradle/6.8/gc.properties

Whitespace-only changes.
18.8 KB
Binary file not shown.
18.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)