|
|
|
@ -13,12 +13,6 @@ on:
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
codespell:
|
|
|
|
|
permissions: write-all
|
|
|
|
|
needs: check
|
|
|
|
|
uses: ./.github/workflows/codespell.yml
|
|
|
|
|
if: ${{ needs.check.outputs.SHOULD_BUILD == 1 }}
|
|
|
|
|
secrets: inherit
|
|
|
|
|
format:
|
|
|
|
|
name: 'verify format'
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
@ -33,6 +27,12 @@ jobs:
|
|
|
|
|
distribution: 'temurin'
|
|
|
|
|
- name: 'Verify Formatting'
|
|
|
|
|
run: bash -ex ./.ci/scripts/format/script.sh
|
|
|
|
|
codespell:
|
|
|
|
|
permissions: write-all
|
|
|
|
|
needs: check
|
|
|
|
|
uses: ./.github/workflows/codespell.yml
|
|
|
|
|
if: ${{ needs.check.outputs.SHOULD_BUILD == 1 }}
|
|
|
|
|
secrets: inherit
|
|
|
|
|
earelease:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
needs: format
|
|
|
|
|