Adding more explicit documentation regarding the node's ready label. #3590
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: Test and upload to Codecov | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| test-build: | |
| name: Test and upload to Codecov | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.23' | |
| - name: Generate code | |
| run: make generate | |
| - name: Run tests | |
| run: make unit-test | |
| - name: Upload the coverage to Codecov | |
| uses: codecov/codecov-action@v5 |