Skip to content

Commit

Permalink
Merge pull request #59 from ulucinar/uptest-vendor
Browse files Browse the repository at this point in the history
Add vendor step to the pr-comment-trigger workflow
  • Loading branch information
ulucinar authored Jan 4, 2023
2 parents 022d219 + d59e88e commit 9c93b23
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr-comment-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ jobs:
uses: actions/cache@v2
with:
path: ${{ steps.go.outputs.cache }}
key: ${{ runner.os }}-build-lint-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-build-lint-
key: ${{ runner.os }}-build-uptest-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-build-uptest-

- name: Cache Go Dependencies
uses: actions/cache@v2
Expand All @@ -139,6 +139,9 @@ jobs:
key: ${{ runner.os }}-pkg-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-pkg-

- name: Vendor Dependencies
run: make vendor vendor.check

- name: Run Uptest
id: run-uptest
env:
Expand Down

0 comments on commit 9c93b23

Please sign in to comment.