diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 23c12d3ab..79eee79bc 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -18,9 +18,25 @@ concurrency: cancel-in-progress: true jobs: + unit-test: + runs-on: ubuntu-latest + steps: + - name: Run unit-tests + run: make test + e2e-test-empty: runs-on: ubuntu-latest steps: - name: Echo hello run: | echo "hello" + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: "1.22" + - name: Build + uses: actions/setup-go@v4 + with: + go-version: "1.22" + - name: Build with Makefile + run: make build