From c4dcfd4545d9978226f7cf88a8fb180c77beb36a Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 3 Dec 2022 22:41:35 +0900 Subject: [PATCH] Use reusable workflows --- .github/workflows/ci.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7448b49d..2d4d62a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,9 @@ defaults: shell: bash jobs: + tidy: + uses: taiki-e/workflows/.github/workflows/tidy-no-rust.yml@main + test: strategy: fail-fast: false @@ -44,14 +47,3 @@ jobs: - uses: ./ with: tool: ${{ matrix.tool }} - - tidy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - persist-credentials: false - - uses: taiki-e/install-action@shellcheck - - uses: taiki-e/install-action@shfmt - - run: tools/tidy.sh - if: always()