Add VM LiveMigratable Condition to KubevirtMachine #83
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
on: | |
push: | |
branches: | |
- main | |
paths: | |
- clusterkubevirtadm/** | |
pull_request: | |
paths: | |
- clusterkubevirtadm/** | |
name: test-clusterkubevirtadm | |
jobs: | |
clusterkubevirtadm-unit_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: Test | |
run: make clusterkubevirtadm-test | |
- name: Build for linux | |
run: make clusterkubevirtadm-linux | |
- name: Build for macos | |
run: make clusterkubevirtadm-macos | |
- name: Build for windows | |
run: make clusterkubevirtadm-win |