rename run_deploy to publish #31
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: [codecov.yaml] | |
| push: | |
| branches: [main] | |
| jobs: | |
| validate-codecov-config: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate codecov configuration | |
| run: curl -sSL --fail-with-body --data-binary @codecov.yaml https://codecov.io/validate |