Skip to content

Security fix for security/dependabot/27 #915

Security fix for security/dependabot/27

Security fix for security/dependabot/27 #915

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
go-version: [1.19.x,1.20.x]
os: [centos-latest,ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: checkout code
uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.53.3
args: -E gofmt -E gochecknoglobals -E unparam -E misspell --exclude-use-default=false --timeout 5m0s ./...
- name: test
run: make test