Skip to content

Commit

Permalink
Merge pull request #107 from woowacourse-teams/environment/#106
Browse files Browse the repository at this point in the history
feat: GitHub Action 이용한 CI 테스트 구축
  • Loading branch information
jjongwa authored Jul 24, 2023
2 parents 163907b + 92549ab commit a920b10
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Java CI with Gradle

on:
pull_request:
branches: [ main, develop ]

defaults:
run:
working-directory: backend

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-22.04

steps:

- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'

- name: Build with Gradle
run: ./gradlew build

0 comments on commit a920b10

Please sign in to comment.