Skip to content

Commit

Permalink
initialize git submodule in pipelines
Browse files Browse the repository at this point in the history
Signed-off-by: odubajDT <[email protected]>
  • Loading branch information
odubajDT committed Apr 26, 2024
1 parent 57ca243 commit c4d9a95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-go@v4
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:

- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Unit Test
run: make unit-test
Expand All @@ -63,6 +65,7 @@ jobs:
uses: docker/setup-qemu-action@master
with:
platforms: all
fetch-depth: 0
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
Expand Down Expand Up @@ -106,6 +109,9 @@ jobs:
go-version: ${{ env.DEFAULT_GO_VERSION }}
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Download image
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit c4d9a95

Please sign in to comment.