Skip to content

Commit be35688

Browse files
Add labels and empty test
1 parent 75a783c commit be35688

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

.github/workflows/gcp-build.reusable.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ env:
1515

1616
jobs:
1717
build_simulation_api_image:
18+
name: Build simulation API image
1819
runs-on: ubuntu-latest
1920
environment: ${{ inputs.environment }}
20-
name: Build simulation API image
2121

2222
permissions:
2323
contents: "read"
@@ -55,9 +55,9 @@ jobs:
5555
platforms: linux/amd64
5656

5757
build_full_api_image:
58+
name: Build full API image
5859
runs-on: ubuntu-latest
5960
environment: ${{ inputs.environment }}
60-
name: Build full API image
6161

6262
permissions:
6363
contents: "read"
@@ -95,9 +95,9 @@ jobs:
9595
platforms: linux/amd64
9696

9797
build_tagger_api_image:
98+
name: Build tagger API image
9899
runs-on: ubuntu-latest
99100
environment: ${{ inputs.environment }}
100-
name: Build tagger API image
101101

102102
permissions:
103103
contents: "read"

.github/workflows/gcp-deploy.reusable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ env:
1919

2020
jobs:
2121
deploy:
22-
runs-on: ubuntu-latest
2322
name: Deploy
23+
runs-on: ubuntu-latest
2424
outputs:
2525
full_api_url: ${{ steps.deploy_infra.outputs.full_api_url }}
2626
simulation_api_url: ${{ steps.deploy_infra.outputs.simulation_api_url }}
@@ -116,8 +116,8 @@ jobs:
116116
echo "simulation_api_url=${SIMULATION_API_URL}" >> "$GITHUB_OUTPUT"
117117
118118
integ_test:
119-
needs: [deploy]
120119
name: Run integration test
120+
needs: [deploy]
121121
runs-on: ubuntu-latest
122122
environment: ${{ inputs.environment }}
123123

.github/workflows/pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66

77
jobs:
88
test:
9+
name: Test
910
runs-on: ubuntu-latest
1011
strategy:
1112
matrix:
@@ -35,6 +36,7 @@ jobs:
3536
uv run pytest tests/ -v
3637
3738
lint:
39+
name: Lint
3840
runs-on: ubuntu-latest
3941

4042
steps:
@@ -61,6 +63,7 @@ jobs:
6163
done
6264
6365
docker-build:
66+
name: Docker build
6467
runs-on: ubuntu-latest
6568
strategy:
6669
matrix:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""Placeholder test to ensure test suite runs."""
2+
3+
4+
def test_placeholder():
5+
"""Placeholder test that always passes."""
6+
assert True

0 commit comments

Comments
 (0)