Update controller gen #529
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: Run Unit Tests | |
'on': | |
- pull_request | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
name: Set up golang 1.20 | |
with: | |
go-version-file: 'go.mod' | |
check-latest: false | |
- name: Install package and dependencies | |
run: | | |
make | |
- name: Run Tests | |
run: make test |