Skip to content

feature : Github Action Test Properties 추가 #97

feature : Github Action Test Properties 추가

feature : Github Action Test Properties 추가 #97

Workflow file for this run

name: SonarCloud
on:
pull_request:
branches:
- develop
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: 'zulu'
- name: Cache Gradle packages
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Spotless check
run: ./gradlew spotlessCheck
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Make application-secret.yml
run: |
cd ./src/main/resources
touch ./application-secret.yml
echo "${{ secrets.PROPERTIES_SECRET }}" > ./application-secret.yml
shell: bash
- name: Make test application.yml
run: |

Check failure on line 40 in .github/workflows/ci_dev.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci_dev.yml

Invalid workflow file

You have an error in your yaml syntax on line 40
cd ./src/test/resources
touch ./application.yml
echo "${{ secrets.PROPERTIES_SECRET_TEST }}" > ./application.yml
shell: bash
- name: Build and analyze
run: ./gradlew test sonar --info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}