Bump thirdparty/json from d10879b to e4bdf1b
#35
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: check-formatting | |
| on: | |
| pull_request: | |
| jobs: | |
| check-formatting: | |
| name: Check formatting | |
| runs-on: ubuntu-latest | |
| container: ubuntu:24.04 | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Install base packages | |
| run: | | |
| apt-get update | |
| apt-get install -y wget tar git make curl | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Configure clang | |
| uses: ./.github/actions/configure-clang | |
| with: | |
| clang_version: 20 | |
| - name: Test formatting for all files | |
| working-directory: ${{ github.workspace }} | |
| run: ./scripts/check-format.sh |