Skip to content

Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.2 #166

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

Bump github.com/sirupsen/logrus from 1.9.0 to 1.9.2 #166

Workflow file for this run

---
name: test
on:
push:
branches:
- main
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
os:
- ubuntu-22.04
- macos-11.0
- windows-2022
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '1.20'
- name: Lint
if: ${{ matrix.os == 'ubuntu-22.04' }}
run: make lint
- name: Test
run: make coverage
- name: Publish coverage to coveralls.io
uses: shogo82148/actions-goveralls@v1
if: ${{ matrix.os == 'ubuntu-22.04' }}
with:
path-to-profile: coverage.out
- name: Build
run: make build