Add basic github actions
This commit is contained in:
parent
496af0ba43
commit
7ddb035ef6
1 changed files with 12 additions and 0 deletions
12
.github/workflows/build.yml
vendored
Normal file
12
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
name: Build
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
container:
|
||||
image: openjdk:14-jdk
|
||||
options: --user root
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: gradle/wrapper-validation-action@v1
|
||||
- run: ./gradlew build --stacktrace
|
Loading…
Reference in a new issue