From 181657cec0fdc7ae183f5a4877ca1956edcf6d1e Mon Sep 17 00:00:00 2001 From: Pablo Chacin Date: Fri, 25 Aug 2023 15:15:52 +0200 Subject: [PATCH] Add integration tests to PR pipeline Signed-off-by: Pablo Chacin --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c7ae749..fa5873fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,6 +43,18 @@ jobs: - name: Run unit tests run: go test -v -cover -race ./... + run-integration-tests: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Install Go + uses: actions/setup-go@v4 + with: + go-version: 1.19.x + - name: Run integration tests + run: go test -tags integration -v -cover -race ./... + run-linter: runs-on: ubuntu-latest steps: