From: Zack Cerza Date: Mon, 21 Mar 2022 16:20:57 +0000 (-0600) Subject: Add 'integration' GitHub Action X-Git-Tag: 1.2.0~190^2~15 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=14a7ac9ba64ba574fe0c5eec344f0b89a3a16963;p=teuthology.git Add 'integration' GitHub Action This will use our recent docker-compose work. Signed-off-by: Zack Cerza --- diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 000000000..162d51032 --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,12 @@ +name: integration +on: + pull_request: + workflow_dispatch: +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Test using docker-compose + run: ./start.sh + working-directory: ./docs/docker-compose