Skip to content

Commit

Permalink
1. Fixing coverage db
Browse files Browse the repository at this point in the history
  • Loading branch information
iasergunin committed Dec 9, 2023
1 parent 3e4301d commit 4a89e3b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 46 deletions.
88 changes: 43 additions & 45 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,46 +10,46 @@ env:
GO_TARGET_VERSION: 1.21
OS_TARGET: ubuntu-latest
jobs:
tests-units:
permissions:
pull-requests: write
strategy:
matrix:
go-version:
# - '1.10' doesn't have go module
# - 1.11
# - 1.12 doesn't have errors pkg
- '1.13'
- '1.14'
- '1.15'
- '1.16'
- '1.17'
- '1.18'
- '1.19'
- '1.20'
os:
- ubuntu-latest
# - macos-latest
# - windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}
- name: Tests
run: make test
# tests-units:
# permissions:
# pull-requests: write
# strategy:
# matrix:
# go-version:
# # - '1.10' doesn't have go module
# # - 1.11
# # - 1.12 doesn't have errors pkg
# - '1.13'
# - '1.14'
# - '1.15'
# - '1.16'
# - '1.17'
# - '1.18'
# - '1.19'
# - '1.20'
# os:
# - ubuntu-latest
# # - macos-latest
# # - windows-latest
# runs-on: ${{ matrix.os }}
# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# - name: Install Go
# uses: actions/setup-go@v3
# with:
# go-version: ${{ matrix.go-version }}
# - uses: actions/cache@v3
# with:
# path: |
# ~/.cache/go-build
# ~/go/pkg/mod
# key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
# restore-keys: |
# ${{ runner.os }}-go-${{ matrix.go-version }}
#
# - name: Tests
# run: make test

tests-integration:
permissions:
Expand Down Expand Up @@ -117,14 +117,12 @@ jobs:
set -x
COVERAGE_TOTAL=`go tool covdata func -i=./coverage | grep total | grep -Eo '[0-9]+\.[0-9]+'`
echo "COVERAGE_TOTAL=$COVERAGE_TOTAL" >> $GITHUB_ENV
- uses: jandelgado/[email protected]
with:
outfile: ./coverage.lcov
- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
path-to-lcov: ./coverage.lcov
format: golang
file: ./coverage.out
github-token: ${{ secrets.GITHUB_TOKEN }}

golangci:
Expand Down
2 changes: 1 addition & 1 deletion sh/go.test.coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ mkdir -p $ROOT/coverage

./go.test.sh $COVERAGE_TEST "$@"

go tool covdata textfmt -i="$ROOT/coverage" -o "$ROOT/coverage.out"
go tool covdata textfmt -i="$ROOT/coverage" -o "$ROOT/coverage.out"

0 comments on commit 4a89e3b

Please sign in to comment.