mirror of
https://github.com/sekwah41/Advanced-Portals.git
synced 2024-11-21 18:16:03 +01:00
Switched to gradle actions
This commit is contained in:
parent
31db696b1a
commit
5e1d9aeb9d
17
.github/workflows/gradle.yml
vendored
Normal file
17
.github/workflows/gradle.yml
vendored
Normal 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
4
.gitignore
vendored
@ -1,8 +1,8 @@
|
|||||||
*.class
|
*.class
|
||||||
.*
|
|
||||||
/build/
|
/build/
|
||||||
/target/
|
/target/
|
||||||
|
.gradle/
|
||||||
|
.idea/
|
||||||
# Package Files #
|
# Package Files #
|
||||||
*.war
|
*.war
|
||||||
*.ear
|
*.ear
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
language: java
|
|
||||||
before_install:
|
|
||||||
- chmod +x gradlew
|
|
||||||
cache:
|
|
||||||
directories:
|
|
||||||
- $HOME/.m2
|
|
Loading…
Reference in New Issue
Block a user