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

chore: rename job #862

Merged
merged 1 commit into from
Dec 17, 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
8 changes: 4 additions & 4 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
fail_on_error: true # deprecated
filter_mode: nofilter
golangci_lint_flags: --timeout=10m
generate:
name: Generate
generation:
name: Generation
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Check Diff
run: git diff --exit-code
- uses: actions/cache/save@v4
if: steps.go-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main'
if: always() && steps.go-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main'
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Run Test
run: go test -race -shuffle on -parallel 8 -v ./...
- uses: actions/cache/save@v4
if: steps.go-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main'
if: always() && steps.go-cache.outputs.cache-hit != 'true' && github.ref == 'refs/heads/main'
with:
path: |
~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
key: ${{ steps.pnpm-cache.outputs.cache-primary-key }}

generate:
name: Generate
name: Generation
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
Loading