Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ on:
- main
paths:
- 'Bigtable/**'
- '.github/workflows/system-tests-bigtable-emulator.yaml'
- '.github/workflows/emulator-system-tests-bigtable.yaml'
- '.github/emulator/**'
pull_request:
paths:
- 'Bigtable/**'
- '.github/workflows/system-tests-bigtable-emulator.yaml'
- '.github/workflows/emulator-system-tests-bigtable.yaml'
- '.github/emulator/**'
name: Run Bigtable System Tests With Emulator
name: Emulator System Tests
permissions:
contents: read
jobs:
test:
name: Bigtable
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5

Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
name: Run Datastore System Tests With Emulator
on:
push:
branches:
- main
paths:
- 'Datastore/**'
- '.github/workflows/system-tests-datastore-emulator.yaml'
- '.github/workflows/emulator-system-tests-datastore.yaml'
- '.github/emulator/**'
pull_request:
paths:
- 'Datastore/**'
- '.github/workflows/system-tests-datastore-emulator.yaml'
- '.github/workflows/emulator-system-tests-datastore.yaml'
- '.github/emulator/**'
name: Emulator System Tests
permissions:
contents: read
jobs:
test:
name: Datastore
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ on:
- main
paths:
- 'Firestore/**'
- '.github/workflows/system-tests-firestore-emulator.yaml'
- '.github/workflows/emulator-system-tests-firestore.yaml'
- '.github/emulator/**'
pull_request:
paths:
- 'Firestore/**'
- '.github/workflows/system-tests-firestore-emulator.yaml'
- '.github/workflows/emulator-system-tests-firestore.yaml'
- '.github/emulator/**'
name: Run Firestore System Tests With Emulator
name: Emulator System Tests
permissions:
contents: read
jobs:
test:
name: Firestore
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ on:
- main
paths:
- 'PubSub/**'
- '.github/workflows/system-tests-pubsub-emulator.yaml'
- '.github/workflows/emulator-system-tests-pubsub.yaml'
- '.github/emulator/**'
pull_request:
paths:
- 'PubSub/**'
- '.github/workflows/system-tests-pubsub-emulator.yaml'
- '.github/workflows/emulator-system-tests-pubsub.yaml'
- '.github/emulator/**'
name: Run PubSub System Tests With Emulator
name: Emulator System Tests
permissions:
contents: read
jobs:
test:
name: PubSub
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ on:
- main
paths:
- 'Spanner/**'
- '.github/workflows/system-tests-spanner-emulator.yaml'
- '.github/workflows/emulator-system-tests-spanner.yaml'
pull_request:
paths:
- 'Spanner/**'
- '.github/workflows/system-tests-spanner-emulator.yaml'
name: Run Spanner System Tests With Emulator
- '.github/workflows/emulator-system-tests-spanner.yaml'
name: Emulator System Tests
permissions:
contents: read
jobs:
test:
name: Spanner
runs-on: 'ubuntu-24.04'

services:
emulator:
image: gcr.io/cloud-spanner-emulator/emulator:1.5.34
Expand Down
Loading