mirror of
https://github.com/mochi-mqtt/server.git
synced 2025-09-27 04:26:23 +08:00
Update build.yml (#203)
This commit is contained in:
42
.github/workflows/build.yml
vendored
42
.github/workflows/build.yml
vendored
@@ -7,37 +7,39 @@ 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
|
||||||
|
|
||||||
- name: Vet
|
- name: Vet
|
||||||
run: go vet ./...
|
run: go vet ./...
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -race ./... && echo true
|
run: go test -race ./... && echo true
|
||||||
|
|
||||||
|
|
||||||
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'
|
||||||
go-version: 1.19.x
|
- name: Check out code
|
||||||
- name: Checkout code
|
uses: actions/checkout@v3
|
||||||
uses: actions/checkout@v2
|
- name: Install dependencies
|
||||||
- name: Calc coverage
|
run: |
|
||||||
run: |
|
go mod download
|
||||||
go test -v -covermode=count -coverprofile=coverage.out ./...
|
- name: Run Unit tests
|
||||||
- name: Convert coverage.out to coverage.lcov
|
run: |
|
||||||
uses: jandelgado/gcov2lcov-action@v1.0.6
|
go test -race -covermode atomic -coverprofile=covprofile ./...
|
||||||
- name: Coveralls
|
- name: Install goveralls
|
||||||
uses: coverallsapp/github-action@v1.1.2
|
run: go install github.com/mattn/goveralls@latest
|
||||||
with:
|
- name: Send coverage
|
||||||
github-token: ${{ secrets.github_token }}
|
env:
|
||||||
path-to-lcov: coverage.lcov
|
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
run: goveralls -coverprofile=covprofile -service=github
|
||||||
|
Reference in New Issue
Block a user