Skip to content

Chore(deps): Bump golang.org/x/net from 0.7.0 to 0.15.0 #198

Chore(deps): Bump golang.org/x/net from 0.7.0 to 0.15.0

Chore(deps): Bump golang.org/x/net from 0.7.0 to 0.15.0 #198

Workflow file for this run

name: CI Actions # don't edit while the badge was depend on this
on:
push:
branches:
- main
tags:
- v*
pull_request:
branches:
- main
jobs:
lint-build-test:
name: Lint/Test
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{matrix.go-version}}
- name: Checkout Code Base
uses: actions/checkout@v2
- name: Restore Go Module Cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Make Lint
run: |
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.31.0
make lint
- name: Run Unit tests
run: |
make test
- name: Install goveralls
env:
GO111MODULE: off
run: go get github.com/mattn/goveralls
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=covprofile -service=github