fix(tests): escape gitref in action #310
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: go tests | |
on: | |
# workflow_dispatch: | |
# workflow_run: | |
# workflows: | |
# - "Check and Update Package Version" | |
# types: | |
# - completed | |
# branches: | |
# - "*" | |
push: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Install dependencies | |
run: go mod download && go mod tidy | |
- name: Install Azure CLI | |
run: | | |
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash | |
az --version | |
# 10.x.x | |
kf_10_x_x: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: echo "Running tests for KF 10.x.x" | |
### Store Type Tests | |
Test_StoreTypes_KFC_10_5_0: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_10_x_x | |
env: | |
SECRET_NAME: "command-config-1050-clean" | |
KEYFACTOR_HOSTNAME: "int1050-test-clean.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
export KFUTIL_DEBUG=1 | |
go test -v ./cmd -run "^Test_StoreTypes*" | |
### Store Tests | |
Test_Stores_KFC_10_5_0: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_10_x_x | |
- Test_StoreTypes_KFC_10_5_0 | |
env: | |
SECRET_NAME: "command-config-1050" | |
KEYFACTOR_HOSTNAME: "integrations1050-lab.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: go test -v ./cmd -run "^Test_Stores_*" | |
### PAM Tests | |
Test_PAM_KFC_10_5_0: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_10_x_x | |
- Test_StoreTypes_KFC_10_5_0 | |
env: | |
SECRET_NAME: "command-config-1050" | |
KEYFACTOR_HOSTNAME: "integrations1050-lab.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
unset KFUTIL_DEBUG | |
go test -v ./cmd -run "^Test_PAM*" | |
### PAM Tests AKV Auth Provider | |
Test_AKV_PAM_KFC_10_5_0: | |
runs-on: self-hosted | |
needs: | |
- Test_PAM_KFC_10_5_0 | |
env: | |
SECRET_NAME: "command-config-1050-az" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Install dependencies | |
run: go mod download && go mod tidy | |
- name: Get secret from Azure Key Vault | |
run: | | |
. ./examples/auth/akv/akv_auth.sh | |
cat $HOME/.keyfactor/command_config.json | |
- name: Install kfutil | |
run: | | |
make install | |
- name: Run tests | |
run: | | |
go test -v ./cmd -run "^Test_PAM*" | |
## KFC 11.x.x | |
kf_11_x_x: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: echo "Running tests for KF 11.x.x" | |
### Store Type Tests | |
Test_StoreTypes_KFC_11_1_2: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_11_x_x | |
env: | |
SECRET_NAME: "command-config-1112-clean" | |
KEYFACTOR_HOSTNAME: "int1112-test-clean.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
unset KFUTIL_DEBUG | |
go test -v ./cmd -run "^Test_StoreTypes*" | |
### Store Tests | |
Test_Stores_KFC_11_1_2: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_11_x_x | |
- Test_StoreTypes_KFC_11_1_2 | |
env: | |
SECRET_NAME: "command-config-1112" | |
KEYFACTOR_HOSTNAME: "integrations1112-lab.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: go test -v ./cmd -run "^Test_Stores_*" | |
### PAM Tests | |
Test_PAM_KFC_11_1_2: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_11_x_x | |
- Test_StoreTypes_KFC_11_1_2 | |
env: | |
SECRET_NAME: "command-config-1112" | |
KEYFACTOR_HOSTNAME: "integrations1112-lab.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
unset KFUTIL_DEBUG | |
go test -v ./cmd -run "^Test_PAM*" | |
### PAM Tests AKV Auth Provider | |
Test_AKV_PAM_KFC_11_1_2: | |
runs-on: self-hosted | |
needs: | |
- Test_PAM_KFC_11_1_2 | |
env: | |
SECRET_NAME: "command-config-1112-az" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Install dependencies | |
run: go mod download && go mod tidy | |
- name: Get secret from Azure Key Vault | |
run: | | |
. ./examples/auth/akv/akv_auth.sh | |
cat $HOME/.keyfactor/command_config.json | |
- name: Install kfutil | |
run: | | |
make install | |
- name: Run tests | |
run: | | |
go test -v ./cmd -run "^Test_PAM*" | |
## KFC 12.x.x | |
### Store Type Tests | |
Test_StoreTypes_KFC_12_2_0: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_11_x_x | |
env: | |
SECRET_NAME: "command-config-1220-clean" | |
KEYFACTOR_HOSTNAME: "int1220-test-clean.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
unset KFUTIL_DEBUG | |
go test -v ./cmd -run "^Test_StoreTypes*" | |
### Store Tests | |
Test_Stores_KFC_12_2_0: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_11_x_x | |
- Test_StoreTypes_KFC_12_2_0 | |
env: | |
SECRET_NAME: "command-config-1220" | |
KEYFACTOR_HOSTNAME: "integrations1220-lab.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: go test -v ./cmd -run "^Test_Stores_*" | |
### PAM Tests | |
Test_PAM_KFC_12_2_0: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
- kf_11_x_x | |
- Test_StoreTypes_KFC_12_2_0 | |
env: | |
SECRET_NAME: "command-config-1220" | |
KEYFACTOR_HOSTNAME: "integrations1220-lab.kfdelivery.com" | |
KEYFACTOR_DOMAIN: "command" | |
KEYFACTOR_USERNAME: ${{ secrets.LAB_USERNAME }} | |
KEYFACTOR_PASSWORD: ${{ secrets.LAB_PASSWORD }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run tests | |
run: | | |
unset KFUTIL_DEBUG | |
go test -v ./cmd -run "^Test_PAM*" | |
### PAM Tests AKV Auth Provider | |
Test_AKV_PAM_KFC_12_2_0: | |
runs-on: self-hosted | |
needs: | |
- Test_PAM_KFC_12_2_0 | |
env: | |
SECRET_NAME: "command-config-1220-az" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
- name: Install dependencies | |
run: go mod download && go mod tidy | |
- name: Get secret from Azure Key Vault | |
run: | | |
. ./examples/auth/akv/akv_auth.sh | |
cat $HOME/.keyfactor/command_config.json | |
- name: Install kfutil | |
run: | | |
make install | |
- name: Run tests | |
run: | | |
go test -v ./cmd -run "^Test_PAM*" | |
# Tester Install Script | |
Test_Install_Script: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Test Quick Install Script | |
run: | | |
sudo apt update && sudo apt upgrade -y && sudo apt install -y curl wget unzip jq openssl && sudo apt clean | |
echo curl -s "https://raw.githubusercontent.com/Keyfactor/kfutil/${GITHUB_REF_NAME}/install.sh" | |
GITHUB_REF_NAME_ENCODED=$(echo -n "${GITHUB_REF_NAME}" | jq -sRr @uri) | |
bash <(curl -s "https://raw.githubusercontent.com/Keyfactor/kfutil/${GITHUB_REF_NAME_ENCODED}/install.sh") | |
which kfutil | |
kfutil version | |
rm $(which kfutil) | |
# Package Tests | |
Test_Kfutil_pkg: | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
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@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version-file: 'go.mod' | |
cache: true | |
# Install dependencies | |
- name: Install dependencies | |
run: go mod download | |
# Run the tests with coverage found in the pkg directory | |
- name: Run tests | |
run: go test -v -cover ./pkg/... |