Skip to content

Commit 68ebf93

Browse files
authored
ci: add fmt and lint to required tests (#7975)
1 parent 5de1084 commit 68ebf93

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,14 +565,16 @@ jobs:
565565

566566
required:
567567
runs-on: ubuntu-latest
568-
needs: [gen, test-go, test-go-pg, test-go-race, test-js]
568+
needs: [fmt, lint, gen, test-go, test-go-pg, test-go-race, test-js]
569569
# Allow this job to run even if the needed jobs fail, are skipped or
570570
# cancelled.
571571
if: always()
572572
steps:
573573
- name: Ensure required checks
574574
run: |
575575
echo "Checking required checks"
576+
echo "- fmt: ${{ needs.fmt.result }}"
577+
echo "- lint: ${{ needs.lint.result }}"
576578
echo "- gen: ${{ needs.gen.result }}"
577579
echo "- test-go: ${{ needs.test-go.result }}"
578580
echo "- test-go-pg: ${{ needs.test-go-pg.result }}"

0 commit comments

Comments
 (0)