Skip to content

Instantly share code, notes, and snippets.

@mkutz
Last active October 15, 2021 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkutz/b313dabed2670ba73553fa207f248186 to your computer and use it in GitHub Desktop.
Save mkutz/b313dabed2670ba73553fa207f248186 to your computer and use it in GitHub Desktop.
Simple build for a Spring Boot project built with Gradle
name: Build
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: temurin
java-version: 17
- run: ./gradlew check
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment