[tools](deps): Bump github.com/itchyny/gojq in /tools in the main gro… #194
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
| # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
| name: scripts | |
| on: | |
| workflow_dispatch: {} | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| lint-scripts: | |
| name: Lints scripts | |
| runs-on: ubuntu-latest | |
| steps: | |
| # https://github.com/actions/checkout | |
| - uses: actions/checkout@v6 | |
| # https://github.com/actions/setup-go/ | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25.x' | |
| check-latest: true | |
| cache: false | |
| - id: tools | |
| uses: ./.github/actions/tools | |
| with: | |
| cache-key-prefix: lint | |
| - name: Check shell files | |
| run: make ci-sh | |
| - name: Check dependabot file | |
| run: make ci-dependabot | |
| - name: Check codecov.yml | |
| shell: bash | |
| run: | | |
| curl --data-binary @codecov.yml https://codecov.io/validate |