KVM: Monitor VM IP address using qemu-guest-agent #565
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: OpenNebula Smoke Tests | |
# Controls when the action will run. | |
on: [push, pull_request, workflow_dispatch] | |
permissions: | |
contents: read | |
jobs: | |
smoke-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Install rubocop | |
run: gem install rubocop | |
- name: Install CppCheck | |
run: sudo apt install -y cppcheck | |
- name: Install AStyle | |
run: sudo apt install -y astyle | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
# Runs a single command using the runners shell | |
- name: Run Smoke Tests | |
run: $GITHUB_WORKSPACE/share/smoke_tests/smoke_tests.sh |