This repository was archived by the owner on Jan 14, 2026. It is now read-only.
Bump github.com/sirupsen/logrus from 1.8.1 to 1.8.3 #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| go: ['1.14', '1.15', '1.16'] | |
| env: | |
| VERBOSE: 1 | |
| GOFLAGS: -mod=readonly | |
| GOPROXY: https://proxy.golang.org | |
| steps: | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| run: make test |