Skip to content

Merge pull request #44 from SOPT-all/refactor/#42 #32

Merge pull request #44 from SOPT-all/refactor/#42

Merge pull request #44 from SOPT-all/refactor/#42 #32

Workflow file for this run

name: dev-CI

Check failure on line 1 in .github/workflows/dev-CI.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dev-CI.yml

Invalid workflow file

you may only define one of `branches` and `branches-ignore` for a single event
on:
pull_request:
branches:
- develop
branches-ignore:
- main
jobs:
build:
runs-on: ubuntu-22.04
environment: dev
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
- name: create secret config file
run: |
cd src/main/resources
echo "${{ secrets.APPLICATION_DEV }}" > ./application-dev.yml
- name: build with gradle
run: |
chmod +x gradlew
./gradlew clean build -x test