Merge branch 'master' into develop
This commit is contained in:
commit
883f5967de
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
@ -1,6 +1,9 @@
|
||||
name: Build
|
||||
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
20
.github/workflows/build_others.yml
vendored
Normal file
20
.github/workflows/build_others.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
name: Other build checks
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '!master'
|
||||
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user