Skip to content

Bump github.com/sirupsen/logrus from 1.8.1 to 1.8.3 #12

Bump github.com/sirupsen/logrus from 1.8.1 to 1.8.3

Bump github.com/sirupsen/logrus from 1.8.1 to 1.8.3 #12

Workflow file for this run

name: pull-request-checks
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: check-format-on-pr
run: make format
- name: check-lint-on-pr
run: make lint