Skip to content

Commit

Permalink
fix: token
Browse files Browse the repository at this point in the history
  • Loading branch information
darkweaver87 committed Jul 25, 2024
1 parent 34ed61b commit 6dd344c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ jobs:
with:
go-version-file: tests/go.mod
cache-dependency-path: tests/go.sum
- name: docker hub login
uses: docker/login-action@v3
with:
username: traefiker
password: ${{ secrets.TRAEFIKER_DOCKERHUB_TOKEN }}
- name: run tests
working-directory: tests
run: make test-walkthrough
Expand All @@ -42,6 +47,11 @@ jobs:
with:
go-version-file: tests/go.mod
cache-dependency-path: tests/go.sum
- name: docker hub login
uses: docker/login-action@v3
with:
username: traefiker
password: ${{ secrets.TRAEFIKER_DOCKERHUB_TOKEN }}
- name: run tests
working-directory: tests
run: make test-apigw
Expand All @@ -55,6 +65,11 @@ jobs:
with:
go-version-file: tests/go.mod
cache-dependency-path: tests/go.sum
- name: docker hub login
uses: docker/login-action@v3
with:
username: traefiker
password: ${{ secrets.TRAEFIKER_DOCKERHUB_TOKEN }}
- name: run tests
working-directory: tests
run: make test-apim
Expand All @@ -68,6 +83,11 @@ jobs:
with:
go-version-file: tests/go.mod
cache-dependency-path: tests/go.sum
- name: docker hub login
uses: docker/login-action@v3
with:
username: traefiker
password: ${{ secrets.TRAEFIKER_DOCKERHUB_TOKEN }}
- name: run tests
working-directory: tests
run: make test-testhelpers

0 comments on commit 6dd344c

Please sign in to comment.