AutoCompact & CompactWithDeprecateTable Support #190
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: | |
branches: | |
- main | |
- lint | |
pull_request: | |
branches: | |
- main | |
- lint | |
jobs: | |
ubuntu-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.19 | |
- name: Run golangci-lint | |
uses: golangci/[email protected] | |
- name: Run Go Fmt | |
run: | | |
files=$(go fmt ./...) | |
if [ -n "$files" ]; then | |
echo "Please run gofmt on these files ..." | |
echo "$files" | |
exit 1 | |
fi | |
- name: Build | |
run: go build -v | |
- name: Run Unit Test | |
run: go test -count 1 -v ./... | |
windows-test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.19 | |
- name: Run golangci-lint | |
uses: golangci/[email protected] | |
- name: Build | |
run: go build -v | |
- name: Run Unit Test | |
run: go test -count 1 -v ./... |