Enabling CI for tests coverage.
This commit is contained in:
parent
cacebbacb9
commit
c6cfe8e698
84
.github/workflows/go.yml
vendored
84
.github/workflows/go.yml
vendored
@ -21,45 +21,45 @@ jobs:
|
|||||||
uses: golangci/golangci-lint-action@v2
|
uses: golangci/golangci-lint-action@v2
|
||||||
with:
|
with:
|
||||||
version: v1.29
|
version: v1.29
|
||||||
# test:
|
test:
|
||||||
# strategy:
|
strategy:
|
||||||
# matrix:
|
matrix:
|
||||||
# go-version: [1.15.x]
|
go-version: [1.15.x]
|
||||||
# platform: [ubuntu-latest, macos-latest]
|
platform: [ubuntu-latest, macos-latest]
|
||||||
# runs-on: ${{ matrix.platform }}
|
runs-on: ${{ matrix.platform }}
|
||||||
# steps:
|
steps:
|
||||||
# - name: Install Go
|
- name: Install Go
|
||||||
# if: success()
|
if: success()
|
||||||
# uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
# with:
|
with:
|
||||||
# go-version: ${{ matrix.go-version }}
|
go-version: ${{ matrix.go-version }}
|
||||||
# - name: Checkout code
|
- name: Checkout code
|
||||||
# uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
# - name: Run tests
|
- name: Run tests
|
||||||
# run: go test -v -covermode=count
|
run: go test -v -covermode=count
|
||||||
#
|
|
||||||
# coverage:
|
coverage:
|
||||||
# runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# steps:
|
steps:
|
||||||
# - name: Install Go
|
- name: Install Go
|
||||||
# if: success()
|
if: success()
|
||||||
# uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
# with:
|
with:
|
||||||
# go-version: 1.15.x
|
go-version: 1.15.x
|
||||||
# - name: Checkout code
|
- name: Checkout code
|
||||||
# uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
# - name: Calc coverage
|
- name: Calc coverage
|
||||||
# run: |
|
run: |
|
||||||
# go test -v -covermode=count -coverprofile=coverage.out
|
go test -v -covermode=count -coverprofile=coverage.out
|
||||||
# - name: Codecov
|
- name: Codecov
|
||||||
# uses: codecov/codecov-action@v1
|
uses: codecov/codecov-action@v1
|
||||||
# with:
|
with:
|
||||||
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
|
||||||
# file: ./coverage.out
|
file: ./coverage.out
|
||||||
# - name: Convert coverage.out to coverage.lcov
|
- name: Convert coverage.out to coverage.lcov
|
||||||
# uses: jandelgado/gcov2lcov-action@v1.0.6
|
uses: jandelgado/gcov2lcov-action@v1.0.6
|
||||||
# - name: Coveralls
|
- name: Coveralls
|
||||||
# uses: coverallsapp/github-action@v1.1.2
|
uses: coverallsapp/github-action@v1.1.2
|
||||||
# with:
|
with:
|
||||||
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# path-to-lcov: coverage.lcov
|
path-to-lcov: coverage.lcov
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
![go build](https://github.com/echo-go/dto-lib/workflows/go/badge.svg)
|
![go build](https://github.com/echo-go/dto-lib/workflows/go/badge.svg)
|
||||||
|
[![codecov](https://codecov.io/gh/echo-go/dto-lib/branch/master/graph/badge.svg?token=ZID8HNCZ0J)](https://codecov.io/gh/echo-go/dto-lib)
|
||||||
|
[![Test Coverage](https://api.codeclimate.com/v1/badges/2f8a3d8e201c74902eab/test_coverage)](https://codeclimate.com/github/echo-go/dto-lib/test_coverage)
|
||||||
[![Maintainability](https://api.codeclimate.com/v1/badges/2f8a3d8e201c74902eab/maintainability)](https://codeclimate.com/github/echo-go/dto-lib/maintainability)
|
[![Maintainability](https://api.codeclimate.com/v1/badges/2f8a3d8e201c74902eab/maintainability)](https://codeclimate.com/github/echo-go/dto-lib/maintainability)
|
||||||
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
|
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
|
||||||
[![time tracker](https://wakatime.com/badge/github/echo-go/dto-lib.svg)](https://wakatime.com/badge/github/echo-go/dto-lib)
|
[![time tracker](https://wakatime.com/badge/github/echo-go/dto-lib.svg)](https://wakatime.com/badge/github/echo-go/dto-lib)
|
||||||
|
Loading…
Reference in New Issue
Block a user