Skip to content

Commit

Permalink
test: git action test
Browse files Browse the repository at this point in the history
  • Loading branch information
wnsrl1228 committed May 29, 2024
1 parent fcd7b9f commit 9749e46
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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

0 comments on commit 9749e46

Please sign in to comment.