Skip to content

Add e2e tests to verify plugin functionality #18

Add e2e tests to verify plugin functionality

Add e2e tests to verify plugin functionality #18

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:
- "*"
env:
GOLANG_VERSION: "1.21"
jobs:
unit-tests:
name: Unit tests running
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Checkout code
uses: actions/[email protected]
- name: Unit tests running
run: |
make test
linting:
name: Go code linting
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Checkout code
uses: actions/[email protected]
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --verbose --timeout 6m
build:
name: Build creation
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ env.GOLANG_VERSION }}
- name: Checkout code
uses: actions/[email protected]
- name: Build creation
run: |
make build
gosec:
runs-on: ubuntu-latest
env:
GO111MODULE: on
GOFLAGS: -buildvcs=false
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: ./...