Skip to content

Commit

Permalink
Add build job in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler authored and remkop committed Dec 1, 2021
1 parent 397101c commit 4fa950c
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
name: "Validate Gradle Wrapper"
name: Build
on: [ push, pull_request ]

jobs:
validation:
name: "Validation"
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: gradle/wrapper-validation-action@v1
- name: Checkout
uses: actions/checkout@v2

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Configure JDK
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: 8

- name: Build
run: ./gradlew build

0 comments on commit 4fa950c

Please sign in to comment.