From 2ff2e6dba9258f5c4b7cc7feef6d979b97d956c2 Mon Sep 17 00:00:00 2001 From: Christoph Hartmann Date: Mon, 22 Jan 2024 15:11:32 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9use=20custom=20provider=20directory?= =?UTF-8?q?=20for=20pipeline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pr-test-lint.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/pr-test-lint.yml b/.github/workflows/pr-test-lint.yml index 5c9cf25b..627b5ea7 100644 --- a/.github/workflows/pr-test-lint.yml +++ b/.github/workflows/pr-test-lint.yml @@ -53,6 +53,7 @@ jobs: uses: actions/checkout@v4 - name: Import environment variables from file run: cat ".github/env" >> $GITHUB_ENV + - name: Install Go uses: actions/setup-go@v5 with: @@ -67,6 +68,12 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-go- + + - name: Set provider env + run: echo "PROVIDERS_PATH=${PWD}/.providers" >> $GITHUB_ENV + - name: Display Provider PAth + run: echo $PROVIDERS_PATH + - run: make test/go/plain-ci - uses: actions/upload-artifact@v4 # upload test results if: success() || failure() # run this step even if previous step failed