[백재우] sprint4 #14
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sprint mission 1 PR Test | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- 'part1-백재우' | |
paths: | |
- 'codeit-bootcamp-spring/1-sprint-mission/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: ☕ JDK 17 세팅 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: ☕ gradlew 실행 권한 설정 | |
run: find . -name "gradlew" -exec chmod +x {} \; | |
- name: 🚀 테스트 진행 | |
run: cd codeit-bootcamp-spring/1-sprint-mission && ./gradlew --info test |