Skip to content

Commit

Permalink
feat: Add Gradle CI Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
h-beeen committed Feb 12, 2024
1 parent ba2ec91 commit 59f0e64
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/BuildTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: A11

on:
pull_request:
push:
branches:
- 'develop'
- 'master'

jobs:
build:
name: "[CI] Check Gradle Build"
runs-on: ubuntu-latest
steps:
- name: (Set Up) checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.GIT_TOKEN }}
submodules: true

- name: Update Git submodules
run: git submodule update --remote --recursive

- name: (Set Up) Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

- name: (Set Up) Grant Execute permission for gradlew
run: chmod 777 gradlew

- name: (Build) Build with Gradle
run: ./gradlew clean build -i

0 comments on commit 59f0e64

Please sign in to comment.