Switched to gradle actions

This commit is contained in:
Sekwah 2021-03-23 01:36:34 +00:00
parent 31db696b1a
commit 5e1d9aeb9d
No known key found for this signature in database
GPG Key ID: C3BE2E6C861A461A
3 changed files with 19 additions and 8 deletions

17
.github/workflows/gradle.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew build

4
.gitignore vendored
View File

@ -1,8 +1,8 @@
*.class
.*
/build/
/target/
.gradle/
.idea/
# Package Files #
*.war
*.ear

View File

@ -1,6 +0,0 @@
language: java
before_install:
- chmod +x gradlew
cache:
directories:
- $HOME/.m2