Bump protobuf from 7.35.0 to 7.35.1 in /test #243
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: ci | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - uses: jdx/mise-action@v4.0.1 | |
| - uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.9.0 | |
| - name: Lint Python | |
| run: just lint-python | |
| - name: Type check Python | |
| run: just lint-types | |
| check-generated: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - uses: jdx/mise-action@v4.0.1 | |
| - name: Verify generated files are up-to-date | |
| run: just check-generated | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - uses: jdx/mise-action@v4.0.1 | |
| - name: Build, generate, and test | |
| run: just dev | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.2 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - uses: jdx/mise-action@v4.0.1 | |
| - name: Collect Go coverage via instrumented binary | |
| run: just coverage | |
| - uses: codecov/codecov-action@v6.0.1 | |
| with: | |
| files: coverage.out | |
| token: ${{ secrets.CODECOV_TOKEN }} |