Skip to content

test: git action test #1

test: git action test

test: git action test #1

Workflow file for this run

name: Backend Deployment
on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
jobs:
build:
name: spring boot build & deploy
runs-on: ubuntu-latest
steps:
# 레포 불러오기
- name: checkout Github Action
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run : ./gradlew clean build --exclude-task test
- name: test
run: ls -al