feat: schedule支持最少任务数路由 #229 #116
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Trigger building on pull request event | |
name: Build | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/**' | |
- 'docs/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Set up Node JS | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Build with Gradle | |
run: ./gradlew build |