Skip to content

Commit

Permalink
[Java] Fix step names
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Dec 31, 2019
1 parent 7a7c49b commit fb7309b
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ jobs:
java: [ 8, 11 ]
name: Java ${{ matrix.java }}
steps:
- name: Cache Gradle wrappers and dependencies
- uses: actions/checkout@v2
- uses: actions/cache@v1
- name: Cache Gradle dependencies
uses: actions/checkout@v2
- name: Cache Gradle dependencies
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- uses: actions/cache@v1
- name: Cache Gradle wrappers
uses: actions/cache@v1
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper
Expand All @@ -26,4 +28,4 @@ jobs:
with:
java-version: ${{ matrix.java }}
- name: Build with Gradle
- run: ./gradlew
run: ./gradlew

0 comments on commit fb7309b

Please sign in to comment.