B #7408: Fix PCI device to virtual NUMA node mapping #765
This file contains hidden or 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 |