Skip to content

Commit

Permalink
chore: rename job
Browse files Browse the repository at this point in the history
  • Loading branch information
tosuke committed Dec 17, 2024
1 parent 592493d commit c59c568
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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

0 comments on commit c59c568

Please sign in to comment.