Skip to content

Commit

Permalink
feat: project 빌드 자동화 기능을 가진 github actions 추가
Browse files Browse the repository at this point in the history
- main branch에 push 또는 pull_request 되면 action 시작
  • Loading branch information
ki-met-hoon authored Feb 16, 2024
1 parent e7dbff6 commit 8883439
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/pnu-univ-miryang-campus-github-actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: pnu-univ-miryang-campus-github-actions
run-name: pnu-univ-miryang-campus-github-actions project 빌드 자동화

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
hello-spring-boot:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- run: chmod +x gradlew
- run: ./gradlew clean build test

0 comments on commit 8883439

Please sign in to comment.