Skip to content

Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 #253

Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3

Bump github.com/sirupsen/logrus from 1.9.2 to 1.9.3 #253

Workflow file for this run

name: golangci-lint
on:
push:
branches:
- main
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install golang
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: golangci-lint
uses: golangci/[email protected]
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.52.2
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install golang
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: test
run: "make test"
checkformat:
name: checkformat
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install golang
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: checkformat
run: "make checkformat"