Skip to content

test: 자세 분석 보고서 관련 테스트 코드 작성 #6

test: 자세 분석 보고서 관련 테스트 코드 작성

test: 자세 분석 보고서 관련 테스트 코드 작성 #6

Workflow file for this run

name: Test Coverage
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true