Remove use of github.com/pkg/errors #22
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: Tests | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
unit: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Test | |
run: make test-run-unit | |
integration: | |
name: Run integration tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21' | |
- name: Set up Kind | |
uses: helm/[email protected] | |
with: | |
install_only: true | |
version: v0.20.0 | |
kubectl_version: v1.27.2 | |
- name: Test | |
env: | |
MAX_PARALLELISM: 1 # Constrained to 2 CPUs on ubuntu-latest | |
run: make test-run-int-verbose | |
helm: | |
name: Run Helm tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Test | |
run: make test-run-helm |