Skip to content

test

test #2

Workflow file for this run

name: Go 1.15-
on:
push:
branches:
- 'master'
- 'feature/**'
- 'dev/**'
env:
CODECOV_TOKEN: '69b7ce5f-1937-4405-a44c-6d38dcd0f94b'
MAIN_GO_VER: '1.13'
MAIN_HOST_OS: 'ubuntu-latest'
jobs:
go_test_and_coverage:
strategy:
max-parallel: 6
matrix:
GO_VER: ['1.13', '1.14', '1.15']
HOST_OS: ['ubuntu-latest']
runs-on: ${{ matrix.HOST_OS }}
steps:
- name: Checkout Repositary
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.GO_VER }}
id: go
- name: Get Dependencies
run: |
echo GO_VER = ${{ matrix.GO_VER }}
go get golang.org/x/tools/cmd/cover
go get github.com/mattn/goveralls
go get .
- name: Go test
run: |
go test -v -failfast -cover -covermode=atomic -coverprofile=coverage.out