From 750674d5dfe04db4ab0d3e7f8a246d12e36575d0 Mon Sep 17 00:00:00 2001 From: lvan100 Date: Wed, 23 Apr 2025 10:34:21 +0800 Subject: [PATCH] add workflow for test coverage --- .github/workflows/main.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..d2d8677b --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,30 @@ +name: Run tests and upload coverage + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + test: + name: Run tests and collect coverage + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v5 + + - name: Install dependencies + run: go mod download + + - name: Run tests + run: go test -count=1 -coverprofile=coverage.txt ./... + + - name: Upload results to Codecov + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} + slug: go-spring/spring-core \ No newline at end of file