From 76bf20d8e3bdd1d3f413504a75d1d3f132cfc85a Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Fri, 25 Sep 2026 20:59:55 -0700 Subject: [PATCH] Add lint summary job --- .github/workflows/lint.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 009a15c..4cb4b21 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -5,7 +5,7 @@ on: - main pull_request: jobs: - lint: + clippy: runs-on: ubuntu-latest steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -30,3 +30,13 @@ jobs: steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8 # v2.9.0 + lint: + needs: + - clippy + - format + - spell-check + - readme + if: always() + runs-on: ubuntu-latest + steps: + - run: for result in ${{ join(needs.*.result, ' ') }}; do [ $result = success ]; done