mirror of
https://github.com/mamoe/mirai.git
synced 2025-02-13 11:30:13 +08:00
Create gradle-build.yml
This commit is contained in:
parent
195337fdc0
commit
57350d0a84
19
.github/workflows/gradle-build.yml
vendored
Normal file
19
.github/workflows/gradle-build.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: Gradle CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
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: Grant execute permission for gradlew
|
||||
run: chmod +x gradlew
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew build
|
Loading…
Reference in New Issue
Block a user