Skip to content

Commit

Permalink
🧹use custom provider directory for pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock committed Jan 22, 2024
1 parent 41fa67a commit 2ff2e6d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/pr-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 2ff2e6d

Please sign in to comment.