This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
Adding option to deploy service across nodesets #4017
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: Golang lint, vet and unit test pipeline | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
name: github (govet, golint and gotest) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: Checkout project code | |
uses: actions/checkout@v3 | |
- name: Checkout openstack-k8s-operators-ci project | |
uses: actions/checkout@v3 | |
with: | |
repository: openstack-k8s-operators/openstack-k8s-operators-ci | |
path: ./openstack-k8s-operators-ci | |
- name: Run govet.sh | |
run: ./openstack-k8s-operators-ci/test-runner/govet.sh | |
- name: Run golint.sh | |
run: ./openstack-k8s-operators-ci/test-runner/golint.sh | |
- name: Run tests | |
run: make test | |
golangci: | |
name: github (golangci) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.x | |
- name: Checkout project code | |
uses: actions/checkout@v3 | |
- name: Run golangci lint | |
uses: golangci/golangci-lint-action@v2 | |
with: | |
version: latest | |
args: --timeout 5m |