generated from mingliqiye/lib-tem
25 lines
479 B
YAML
25 lines
479 B
YAML
name: Github Actions Build
|
|
run-name: ${{ github.actor }} is Build out Github Actions 🚀
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
Build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up JDK 8
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '8'
|
|
distribution: 'adopt'
|
|
|
|
|
|
- name: build
|
|
run: |
|
|
./gradlew
|
|
./gradlew build
|