Skip to content

Commit

Permalink
simple action
Browse files Browse the repository at this point in the history
  • Loading branch information
yorlov committed Sep 8, 2020
0 parents commit 853eda8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea/
18 changes: 18 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
runs:
using: "composite"
steps:
- uses: actions/checkout@v2

- uses: actions/setup-java@v1
with:
java-version: 1.8

- uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/*.gradle') }}

- uses: actions/cache@v2
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}

0 comments on commit 853eda8

Please sign in to comment.