Use reusable workflows

This commit is contained in:
Taiki Endo
2022-12-03 22:41:35 +09:00
parent 36e7fe7dbe
commit c4dcfd4545

View File

@@ -18,6 +18,9 @@ defaults:
shell: bash shell: bash
jobs: jobs:
tidy:
uses: taiki-e/workflows/.github/workflows/tidy-no-rust.yml@main
test: test:
strategy: strategy:
fail-fast: false fail-fast: false
@@ -44,14 +47,3 @@ jobs:
- uses: ./ - uses: ./
with: with:
tool: ${{ matrix.tool }} 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()