Skip to content

Commit

Permalink
Create enonic-gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rymsha authored Jul 4, 2020
1 parent 07e817e commit 0781f38
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/enonic-gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Gradle Build

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/[email protected]

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

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

- uses: codecov/[email protected]

0 comments on commit 0781f38

Please sign in to comment.