From 91dc571a0163569ff7f5e920a96080e020e29082 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Mu=C3=9Fler?= Date: Fri, 13 Nov 2020 22:41:31 +0100 Subject: [PATCH] Use GHE action to run e2e. --- .github/workflows/run_e2e.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/run_e2e.yaml diff --git a/.github/workflows/run_e2e.yaml b/.github/workflows/run_e2e.yaml new file mode 100644 index 000000000..fc1235e3a --- /dev/null +++ b/.github/workflows/run_e2e.yaml @@ -0,0 +1,15 @@ +name: ubuntu + +on: + pull_request: + push: + branches: + - master + +jobs: + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Build and test Operator + run: make e2e \ No newline at end of file