Fix: When file was truncated,start from the beginning #968
Workflow file for this run
This file contains 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: Makefile CI | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.18 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
id: go | |
- uses: actions/checkout@v2 | |
- name: Run fmt-check | |
run: make fmt-check | |
- name: Run golangci-lint | |
run: make lint | |
- name: Run go test | |
run: make test |