Skip to content

Merge pull request #251 from opendevstack/fix/vulnerability #156

Merge pull request #251 from opendevstack/fix/vulnerability

Merge pull request #251 from opendevstack/fix/vulnerability #156

Workflow file for this run

name: Continous Integration Tests
on: [push, pull_request]
jobs:
tailor:
name: Run tests
runs-on: ubuntu-latest
steps:
-
name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
-
name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.21
-
name: Download Go tools
run: |
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.2
go install golang.org/x/tools/cmd/goimports@latest
echo "PATH=$PATH:$(go env GOPATH)/bin" >> $GITHUB_ENV
-
name: Run lint
run: |
make lint
-
name: Download OpenShift client
run: |
mkdir -p ~/oc
cd ~/oc
curl -L https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/openshift-client-linux.tar.gz -o oc.tar.gz
tar -xzf oc.tar.gz
echo "$HOME/oc" >> $GITHUB_PATH
-
name: Run Unit tests (cannot run openshift tests due to requiring Github runner with ubuntu 20.04)
run: make test-unit