Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I wish GH actions were easier to test #562

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ jobs:

- name: Checkout code
uses: actions/checkout@v4
fetch-depth: 50
fetch-tags: true
show-progress: true
with:
fetch-depth: 50
fetch-tags: true
show-progress: true

- name: Check go mod tidy is up to date
run: go mod tidy && git diff --exit-code
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ jobs:
steps:
- name: Check out the repo
uses: actions/checkout@v4
fetch-depth: 50
fetch-tags: true
show-progress: true
with:
fetch-depth: 50
fetch-tags: true
show-progress: true

- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
Expand Down
Loading