chore(ci): Reconcile keyfactor workflows and custom workflows #20
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: test | |
on: [workflow_dispatch, push, pull_request] | |
jobs: | |
build: | |
name: Build and Lint | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
# Checkout code | |
# https://github.com/actions/checkout | |
- name: Checkout code | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
# Setup GoLang build environment | |
# https://github.com/actions/setup-go | |
- name: Set up Go 1.x | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
# Download dependencies | |
- run: go mod download | |
# Build Go binary | |
- run: go build -v . | |
# Run Go linters | |
# https://github.com/golangci/golangci-lint-action | |
- name: Run linters | |
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0 | |
with: | |
version: latest | |
test: | |
name: Go Test | |
needs: build | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
# Checkout code | |
# https://github.com/actions/checkout | |
- name: Checkout code | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
# Setup GoLang build environment | |
# https://github.com/actions/setup-go | |
- name: Set up Go 1.x | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
# Deploy an ephemeral EJBCA and SignServer for CI testing | |
- uses: m8rmclaren/ejbca-signserver-k8s@main | |
with: | |
deploy-k8s: 'true' | |
deploy-nginx-ingress: 'true' | |
# Merge the client certificate and client key into the client certificate file | |
- name: Merge client certificate and client key | |
shell: bash | |
run: | | |
cat ${{ secrets.EJBCA_CLIENT_CERT_KEY_PATH }} >> ${{ secrets.EJBCA_CLIENT_CERT_PATH }} | |
# Run Go tests | |
- name: Run go test | |
run: go test -v ./... | |
env: | |
EJBCA_CSR_SUBJECT: "CN=ejbca_testacc" |