Skip to content

feature: publish 환경 변수 변경 #14

feature: publish 환경 변수 변경

feature: publish 환경 변수 변경 #14

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build with Gradle
run: ./gradlew build
- name: Run tests
run: ./gradlew test