From fd39dcfe59846cd130a62499cfa6bfa94fdab518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Mu=C3=9Fler?= Date: Fri, 13 Nov 2020 22:53:05 +0100 Subject: [PATCH] Extend GH actions. --- .github/workflows/run_e2e.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run_e2e.yaml b/.github/workflows/run_e2e.yaml index fc1235e3a..4f45392c1 100644 --- a/.github/workflows/run_e2e.yaml +++ b/.github/workflows/run_e2e.yaml @@ -11,5 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Build and test Operator + - name: Make dependencies + run: make deps + - name: Compile + run: make linux + - name: Run unit tests + run: make test + - name: Run end-2-end tests run: make e2e \ No newline at end of file