Skip to content

Merge branch 'master' into dependabot/go_modules/github.com/fatih/col… #102

Merge branch 'master' into dependabot/go_modules/github.com/fatih/col…

Merge branch 'master' into dependabot/go_modules/github.com/fatih/col… #102

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: stable
- name: Golangci-lint
uses: golangci/[email protected]
test:
name: Test Suite
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: stable
- name: Test
run: go test -v --coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3