Skip to content

Bump path-parse from 1.0.6 to 1.0.7 in /monitoring/web (#2) #16

Bump path-parse from 1.0.6 to 1.0.7 in /monitoring/web (#2)

Bump path-parse from 1.0.6 to 1.0.7 in /monitoring/web (#2) #16

Workflow file for this run

name: Regular Test
on: push
jobs:
compile:
name: Compile
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Build
run: go build ./...
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
cache: false
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: 'latest'
args: --timeout=10m
unit_test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Unit Test
run: |
go test -coverprofile=cover.out ./...
go tool cover -func=cover.out > coverage.out
tail coverage.out