Update build.yml (#203)

This commit is contained in:
werbenhu
2023-05-05 01:09:58 +08:00
committed by GitHub
parent d46e7b5bcf
commit 4b49652a8c

View File

@@ -7,10 +7,10 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Set up Go - name: Set up Go
uses: actions/setup-go@v2 uses: actions/setup-go@v3
with: with:
go-version: 1.19 go-version: 1.19
@@ -22,22 +22,24 @@ jobs:
coverage: coverage:
name: Test with Coverage
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Install Go - name: Set up Go
if: success() uses: actions/setup-go@v3
uses: actions/setup-go@v2
with: with:
go-version: 1.19.x go-version: '1.19'
- name: Checkout code - name: Check out code
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Calc coverage - name: Install dependencies
run: | run: |
go test -v -covermode=count -coverprofile=coverage.out ./... go mod download
- name: Convert coverage.out to coverage.lcov - name: Run Unit tests
uses: jandelgado/gcov2lcov-action@v1.0.6 run: |
- name: Coveralls go test -race -covermode atomic -coverprofile=covprofile ./...
uses: coverallsapp/github-action@v1.1.2 - name: Install goveralls
with: run: go install github.com/mattn/goveralls@latest
github-token: ${{ secrets.github_token }} - name: Send coverage
path-to-lcov: coverage.lcov env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github