Skip to content

Add an e2e test to verify that canary weight is reinitialized to zero #34

Add an e2e test to verify that canary weight is reinitialized to zero

Add an e2e test to verify that canary weight is reinitialized to zero #34

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Openshift Route plugin CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "*"
jobs:
unit-tests:
name: Unit tests running
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Unit tests running
run: |
make test
linting:
name: Go code lint and gosec
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run golangci-lint
run: |
make lint
- name: Run gosec
run: |
make gosec
build:
name: Build creation
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build creation
run: |
make build