From 33bc5227d219aac88459e66b31b4df968041eb9e Mon Sep 17 00:00:00 2001 From: "Jeffrey.Wang" <849096305@qq.com> Date: Thu, 6 Jan 2022 13:06:39 +0800 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 63 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..5907254 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,63 @@ +name: Check and Build + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + lint: + name: Spotless check + runs-on: ubuntu-18.04 + steps: + - name: Check out code + uses: actions/checkout@v2 + - name: Set up JDK + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: spotless + run: ./gradlew spotlessCheck + + api_check: + name: API check + runs-on: ubuntu-18.04 + steps: + - name: Check out code + uses: actions/checkout@v2 + - name: Set up JDK + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: API check + run: ./gradlew apiCheck + + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: set up JDK + uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: Cache Gradle and wrapper + uses: actions/cache@v2 + with: + path: | + ~/.gradle/caches + ~/.gradle/wrapper + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} + restore-keys: | + ${{ runner.os }}-gradle- + + - name: Make Gradle executable + run: chmod +x ./gradlew + + - name: Build with Gradle + run: ./gradlew build