Skip to content

Commit

Permalink
Merge pull request #1691 from authzed/raise-docker-pull-rate-limits
Browse files Browse the repository at this point in the history
authenticate with docker to raise rate-limits
  • Loading branch information
vroldanbet authored Dec 20, 2023
2 parents 8e6ce2d + b3d3489 commit 0496afb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ jobs:
- uses: "authzed/actions/setup-go@main"
with:
go-version: "${{ env.GO_VERSION }}"
- uses: "authzed/actions/docker-login@main"
with:
quayio_token: "${{ secrets.QUAYIO_PASSWORD }}"
github_token: "${{ secrets.GITHUB_TOKEN }}"
dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}"
- uses: "authzed/actions/go-build@main"
- name: "Image tests"
run: "go run mage.go test:image"
Expand Down Expand Up @@ -82,6 +87,11 @@ jobs:
- uses: "authzed/actions/setup-go@main"
with:
go-version: "${{ env.GO_VERSION }}"
- uses: "authzed/actions/docker-login@main"
with:
quayio_token: "${{ secrets.QUAYIO_PASSWORD }}"
github_token: "${{ secrets.GITHUB_TOKEN }}"
dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}"
- name: "Integration tests"
run: "go run mage.go test:integration"

Expand All @@ -100,6 +110,11 @@ jobs:
- uses: "authzed/actions/setup-go@main"
with:
go-version: "${{ env.GO_VERSION }}"
- uses: "authzed/actions/docker-login@main"
with:
quayio_token: "${{ secrets.QUAYIO_PASSWORD }}"
github_token: "${{ secrets.GITHUB_TOKEN }}"
dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}"
- name: "Integration tests"
run: "go run mage.go testds:${{ matrix.datastore }}"
- name: "Integration tests"
Expand Down

0 comments on commit 0496afb

Please sign in to comment.