Add Harvester VEX reports from Rancher's VEX Hub repo #35
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: Test | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Check out VEX Hub | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.repository_owner }}/vexhub | |
path: vexhub | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Test | |
run: go run main.go -strict -vexhub-dir ./vexhub | |
- name: Unit tests | |
run: go test ./... |