Refine the docker build #198
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: check | |
on: | |
push: { } | |
pull_request: { } | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.after }} | |
cancel-in-progress: true | |
jobs: | |
go-mod: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2.1.3 | |
with: | |
go-version: 1.20.4 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Check module vendoring | |
run: | | |
go mod tidy | |
go mod vendor | |
git diff --exit-code || (echo "please run 'go mod tidy && go mod vendor', and submit your changes"; exit 1) | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2.1.3 | |
with: | |
go-version: 1.20.4 | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v3.6.0 | |
with: | |
version: v1.53 | |
args: --timeout 300s --skip-dirs-use-default -v -E goconst -E gofmt -E ineffassign -E goimports -E revive -E misspell -E vet -E deadcode | |
go-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2.1.3 | |
with: | |
go-version: 1.20.4 | |
- uses: actions/cache@v2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Test | |
run: | | |
go test -v ./... | |
go test -race -v ./... | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@1.1.0 | |
env: | |
SHELLCHECK_OPTS: -e SC2236,SC2162,SC2268 | |
with: | |
ignore: tests | |
super-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lint Code Base | |
uses: github/super-linter@v4.5.1 | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_MARKDOWN: true | |
LINTER_RULES_PATH: .github | |
MARKDOWN_CONFIG_FILE: .markdown-lint.yml | |
VALIDATE_MD: true | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FILTER_REGEX_EXCLUDE: .github/.* |