Skip to content

Commit

Permalink
Merge pull request #25 from wyoung163/develop
Browse files Browse the repository at this point in the history
add github action workflow for CI
  • Loading branch information
wyoung163 authored Feb 2, 2025
2 parents bb7e600 + 3c9ece4 commit 8ab69ce
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI test for develop branch

on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean build --exclude-task test

0 comments on commit 8ab69ce

Please sign in to comment.