You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
928 B
31 lines
928 B
2 years ago
|
# This workflow uses actions that are not certified by GitHub.
|
||
|
# They are provided by a third-party and are governed by
|
||
|
# separate terms of service, privacy policy, and support
|
||
|
# documentation.
|
||
|
|
||
|
# GitHub recommends pinning actions to a commit SHA.
|
||
|
# To get a newer version, you will need to update the SHA.
|
||
|
# You can also reference a tag or branch, but the action may change without warning.
|
||
|
|
||
|
name: Java CI
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Set up JDK 11
|
||
|
uses: actions/setup-java@v3
|
||
|
with:
|
||
|
java-version: '11'
|
||
|
distribution: 'adopt'
|
||
|
- name: Validate Gradle wrapper
|
||
|
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
|
||
|
- name: Build with Gradle
|
||
|
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
|
||
|
with:
|
||
|
arguments: build
|