chore: describe select option according to the repo style (#27) #50
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: Go | |
on: [ push ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.17 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Build and test | |
run: make ci-test | |
- name: Send code coverage report | |
run: | | |
bash <(curl -s https://codecov.io/bash) | |
git checkout go.* | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.17 | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.44.2 |