Skip to content

Merge branch 'main' of https://github.com/STACKPOT/STACKPOT-BE into f… #318

Merge branch 'main' of https://github.com/STACKPOT/STACKPOT-BE into f…

Merge branch 'main' of https://github.com/STACKPOT/STACKPOT-BE into f… #318

Workflow file for this run

name: Run Tests
on:
push:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Make application.yml
run: |
cd ./src/main/resources
echo "${{ secrets.APPLICATION_YML }}" > ./application.yml
shell: bash