chore: sync all dependency groups by default and run mypy locally (#1… #1015
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: validate-codecov-config | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/validate-codecov-config.yml' | |
| - 'codecov.yaml' | |
| push: | |
| branches: [main] | |
| permissions: {} | |
| jobs: | |
| validate-codecov-config: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Validate codecov configuration | |
| run: curl -sSL --fail-with-body --data-binary @codecov.yaml https://codecov.io/validate |