[WIP] - unit test #14
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: validate pull requests | |
on: | |
pull_request: | |
jobs: | |
unit_test: | |
runs-on: ubuntu-latest | |
container: | |
image: quay.io/containers/podman:v4 | |
steps: | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: '1.21.4' | |
- uses: actions/checkout@v3 | |
- run: | | |
yum -y install make | |
export GOBIN=$(pwd)/bin/ | |
export CGO_ENABLED=1 | |
make .install.ginkgo | |
make test-unit |