-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 1.1 KB
/
TestCi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Yeonba Backend DEV CI
on:
pull_request:
branches: [ "dev" ]
env:
WORKING_DIRECTORY: ./
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Set fcm account key
env:
FCM_ACCOUNT_KEY: ${{ secrets.FCM_ACCOUNT_KEY }}
run: |
mkdir -p be/src/main/resources/fcm
touch be/src/main/resources/fcm/fcm-account-key.json
echo "$FCM_ACCOUNT_KEY" | base64 --decode > be/src/main/resources/fcm/fcm-account-key.json
- name: Set application properties
run: |
touch be/src/main/resources/application.properties
echo "${{ secrets.APPLICATION_PROPERTIES }}" > be/src/main/resources/application.properties
- name: Test with Gradle
run: |
chmod +x ./be/gradlew
cd be
./gradlew test
env:
WORKING_DIRECTORY: ${{ env.WORKING_DIRECTORY }}