Skip to content

🚚 Chore : GitHub Actions 통합 테스트 #5

🚚 Chore : GitHub Actions 통합 테스트

🚚 Chore : GitHub Actions 통합 테스트 #5

Workflow file for this run

name: Run gradlew test
on:
pull_request:
branches-ignore:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'liberica'
java-version: '17'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Run gradlew test
run: ./gradlew test