Skip to content

[김창우] sprint8

[김창우] sprint8 #1

Workflow file for this run

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 }}