Skip to content

feat(server): 完成reactor server开发,但测试过程中遇到个问题 #76

feat(server): 完成reactor server开发,但测试过程中遇到个问题

feat(server): 完成reactor server开发,但测试过程中遇到个问题 #76

Workflow file for this run

name: Go Test
on:
pull_request:
push:
jobs:
test:
name: Run Tests
runs-on: macos-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Check out code
uses: actions/checkout@v2
- name: Run tests
run: make -f makefile test-with-cover TestPackage=./storage/...
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
files: ./c.out