This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
feature(): Add output and validation fields to every actions (#134) #385
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Cache maven | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2/repository | |
key: maven_cache | |
- name: Build with Gradle | |
run: ./gradlew clean build |