Skip to content

Commit

Permalink
Create GitHub Actions workflow: build
Browse files Browse the repository at this point in the history
  • Loading branch information
merusso authored Mar 6, 2022
1 parent b1b06f9 commit 95650f6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'

- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: build

0 comments on commit 95650f6

Please sign in to comment.