Skip to content

chore: Ignore new lint warn #78

chore: Ignore new lint warn

chore: Ignore new lint warn #78

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/golangci-lint-action@v3
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