From 1a1bafa912b9bcfc72ea23e3882241020bdce7de Mon Sep 17 00:00:00 2001 From: Tino Vazquez Date: Tue, 6 Jul 2021 19:13:13 +0200 Subject: [PATCH] L #-: Adjustments for GH actions smoke tests (cherry picked from commit 0e29710e1e720b767b219262061c1fa7b28c78f6) --- .github/workflows/smoke_tests.yml | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/.github/workflows/smoke_tests.yml b/.github/workflows/smoke_tests.yml index 37d34be5ac..6d83454068 100644 --- a/.github/workflows/smoke_tests.yml +++ b/.github/workflows/smoke_tests.yml @@ -1,26 +1,12 @@ -# This is a basic workflow to help you get started with Actions - -name: CI +name: OpenNebula Smoke Tests # Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [ master ] - pull_request: - branches: [ master ] +on: [push, pull_request, workflow_dispatch] - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on + smoke-tests: runs-on: ubuntu-latest - # Steps represent a sequence of tasks that will be executed as part of the job steps: - name: Set up Ruby uses: ruby/setup-ruby@v1