mg-transport-core/.github/workflows/ci.yml

54 lines
1.4 KiB
YAML
Raw Normal View History

2020-11-26 17:11:11 +03:00
name: ci
on:
push:
branches:
- '**'
tags-ignore:
- '*.*'
pull_request:
env:
GO111MODULE: on
jobs:
golangci:
name: lint
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
2023-01-09 15:57:53 +03:00
- name: Set up stable Go version
2023-01-09 16:02:52 +03:00
uses: actions/setup-go@v3
with:
2023-01-09 15:57:53 +03:00
go-version: 'stable'
- name: Get dependencies
run: go mod tidy
- name: Lint code with golangci-lint
uses: golangci/golangci-lint-action@v3
with:
2022-12-29 16:27:54 +03:00
version: v1.50.1
only-new-issues: true
2020-11-26 17:11:11 +03:00
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
2023-01-09 15:57:53 +03:00
go-version: ['1.18', '1.19', 'stable']
2020-11-26 17:11:11 +03:00
steps:
- name: Set up Go ${{ matrix.go-version }}
2023-01-09 15:55:27 +03:00
uses: actions/setup-go@v3
2020-11-26 17:11:11 +03:00
with:
go-version: ${{ matrix.go-version }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go mod tidy
- name: Tests
run: go test ./... -v -cpu 2 -timeout 10s -race -cover -coverprofile=coverage.txt -covermode=atomic
- name: Coverage
run: |
go install github.com/axw/gocov/gocov@latest
2020-11-26 17:11:11 +03:00
gocov convert ./coverage.txt | gocov report
bash <(curl -s https://codecov.io/bash)