Merge pull request #2227 from leelavg/csi-metrics-1 #64
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: ocs-operator sanity checks | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["*"] | |
jobs: | |
shellcheck: | |
name: shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run shellcheck | |
run: make shellcheck-test | |
golangci-lint: | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go: ["1.20"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.51.1 | |
# The weird NO_FUTURE thing is a workaround suggested here: | |
# # https://github.com/golangci/golangci-lint-action/issues/119#issuecomment-981090648 | |
args: "--out-${NO_FUTURE}format=colored-line-number --timeout=6m ./..." | |
go-test: | |
name: go test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
go: ["1.20"] | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run go test | |
run: make unit-test | |
verify-changes: | |
name: verify generated changes | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
matrix: | |
go: ["1.20"] | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Verify go dependencies | |
run: make verify-deps | |
- name: Verify generated code and configs | |
run: make verify-generated | |
- name: Verify ocs csv changes | |
run: make verify-latest-csv | |
- name: Verify ocs bundle changes | |
run: make verify-operator-bundle | |
- name: Verify deployment YAML | |
run: make verify-latest-deploy-yaml | |
code-spell: | |
name: verify code spellings | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: codespell-project/actions-codespell@master | |
with: | |
exclude_file: go.sum | |
check_filenames: true | |
check_hidden: true | |
skip: vendor | |
ignore_words_list: xdescribe,contails,shouldnot |