Skip to content

chore(deps): update commitlint monorepo to v19 (major) #125

chore(deps): update commitlint monorepo to v19 (major)

chore(deps): update commitlint monorepo to v19 (major) #125

Workflow file for this run

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
name: Go
jobs:
test:
name: Test
strategy:
matrix:
go-version: [1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Cache Go module
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependences
run: make dep
- name: Check code issues by vet
run: make vet
- name: Test
run: make test
- name: Test Coverage
run: make test-coverage
- name: Post coverage data to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
- name: Clean Make
run: make clean
lint:
name: Lint
strategy:
matrix:
go-version: [1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Lint Go code with revive
run: |
export PATH=$PATH:$(go env GOPATH)/bin
make lint
build:
name: Build
strategy:
matrix:
go-version: [1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Cache Go module
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build
run: make build