feat: Add support for GitHub Budgets API #5910
Workflow file for this run
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
| concurrency: | |
| group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| name: tests | |
| env: | |
| GO111MODULE: on | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| defaults: | |
| run: | |
| shell: bash | |
| strategy: | |
| matrix: | |
| go-version: [1.x, 1.24.0] # test with N and the .0 release of N-1 | |
| platform: [ubuntu-latest] | |
| include: | |
| # include windows, but only with the latest Go version, since there | |
| # is very little in the library that is platform specific | |
| - go-version: 1.x | |
| platform: windows-latest | |
| # only update test coverage stats with the most recent go version on linux | |
| - go-version: 1.x | |
| platform: ubuntu-latest | |
| update-coverage: true | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| cache-dependency-path: "**/go.sum" | |
| - name: Run go test | |
| run: | | |
| if [ -n "${{ matrix.update-coverage }}" ]; then | |
| script/test.sh -race -covermode atomic -coverprofile coverage.txt ./... | |
| exit | |
| fi | |
| script/test.sh -race -covermode atomic ./... | |
| - name: Ensure integration tests build | |
| # don't actually run tests since they hit live GitHub API | |
| run: go test -v -tags=integration -run=^$ ./test/integration | |
| - name: Upload coverage to Codecov | |
| if: ${{ matrix.update-coverage }} | |
| uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2 | |
| with: | |
| use_oidc: true |