|
7 | 7 | branches: |
8 | 8 | - main |
9 | 9 | schedule: |
10 | | - - cron: '0 */6 * * *' # Every 6 hours |
| 10 | + - cron: "0 */6 * * *" # Every 6 hours |
11 | 11 | workflow_dispatch: |
12 | 12 | inputs: |
13 | 13 | restateCommit: |
14 | | - description: 'restate commit' |
| 14 | + description: "restate commit" |
15 | 15 | required: false |
16 | | - default: '' |
| 16 | + default: "" |
17 | 17 | type: string |
18 | 18 | restateImage: |
19 | | - description: 'restate image, superseded by restate commit' |
| 19 | + description: "restate image, superseded by restate commit" |
20 | 20 | required: false |
21 | | - default: 'ghcr.io/restatedev/restate:main' |
| 21 | + default: "ghcr.io/restatedev/restate:main" |
22 | 22 | type: string |
23 | 23 | workflow_call: |
24 | 24 | inputs: |
25 | 25 | restateCommit: |
26 | | - description: 'restate commit' |
| 26 | + description: "restate commit" |
27 | 27 | required: false |
28 | | - default: '' |
| 28 | + default: "" |
29 | 29 | type: string |
30 | 30 | restateImage: |
31 | | - description: 'restate image, superseded by restate commit' |
| 31 | + description: "restate image, superseded by restate commit" |
32 | 32 | required: false |
33 | | - default: 'ghcr.io/restatedev/restate:main' |
| 33 | + default: "ghcr.io/restatedev/restate:main" |
34 | 34 | type: string |
35 | 35 |
|
36 | 36 | jobs: |
37 | | - |
38 | 37 | sdk-test-suite: |
39 | 38 | if: github.repository_owner == 'restatedev' |
40 | 39 | runs-on: ubuntu-latest |
@@ -99,14 +98,14 @@ jobs: |
99 | 98 | file: "test-services/Dockerfile" |
100 | 99 | push: false |
101 | 100 | load: true |
102 | | - tags: restatedev/python-test-services |
| 101 | + tags: restatedev/test-services-python |
103 | 102 | cache-from: type=gha,scope=${{ github.workflow }} |
104 | 103 | cache-to: type=gha,mode=max,scope=${{ github.workflow }} |
105 | 104 |
|
106 | 105 | - name: Run test tool |
107 | 106 | uses: restatedev/sdk-test-suite@v3.0 |
108 | 107 | with: |
109 | 108 | restateContainerImage: ${{ inputs.restateCommit != '' && 'localhost/restatedev/restate-commit-download:latest' || (inputs.restateImage != '' && inputs.restateImage || 'ghcr.io/restatedev/restate:main') }} |
110 | | - serviceContainerImage: "restatedev/python-test-services" |
| 109 | + serviceContainerImage: "restatedev/test-services-python" |
111 | 110 | exclusionsFile: "test-services/exclusions.yaml" |
112 | 111 | testArtifactOutput: "sdk-python-integration-test-report" |
0 commit comments