[김창우] sprint8 #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-Test | |
on: | |
pull_request: | |
branches: | |
- part3-김창우 | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Grant execute permission to Gradle | |
run: chmod +x gradlew | |
- name: Build and Test with Gradle | |
run: ./gradlew clean test | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |