mirror of
https://github.com/OpenNebula/one.git
synced 2025-01-07 17:17:41 +03:00
28 lines
709 B
YAML
28 lines
709 B
YAML
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
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
- uses: actions/checkout@v3
|
|
|
|
# Runs a single command using the runners shell
|
|
- name: Run Smoke Tests
|
|
run: $GITHUB_WORKSPACE/share/smoke_tests/smoke_tests.sh
|