Update README.md #1488
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: pre-main-instaclustr-operator-ci-cd | |
on: | |
push: | |
branches: | |
- '*' | |
- '!main' | |
jobs: | |
pre-main-operator-build-and-push: | |
name: PRE-MAIN Build and push the Instaclustr Operator | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Lint Go code | |
run: | | |
go install github.com/golangci/golangci-lint/cmd/[email protected] | |
golangci-lint run --timeout 5m --skip-dirs=pkg/instaclustr/mock | |
- name: Make goimports | |
run: | | |
go install golang.org/x/tools/cmd/[email protected] | |
files_to_be_goimported=$(find . -type f -name '*.go' -not -path "./vendor/*") | |
goimports -v -w -local ./ -l $files_to_be_goimported | |
- name: Test Go code | |
run: | | |
sudo apt update | |
sudo apt-get install -y make | |
make test |