Files
storage/.github/workflows/test-firestore.yml
Yusuf Demir 3972004d7a refactor(firestore): remove v2 suffix and update to Go 1.25
- Remove /v2 suffix from module path (first module version)
- Update Go version from 1.24.0 to 1.25.0
- Update CI workflow to test only Go 1.25.x
- Update README to reflect new module path without /v2
2025-11-27 19:09:04 +03:00

30 lines
649 B
YAML

on:
push:
branches:
- master
- main
paths:
- "firestore/**"
pull_request:
paths:
- "firestore/**"
name: "Tests Firestore"
jobs:
Tests:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- 1.25.x
steps:
- name: Fetch Repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "${{ matrix.go-version }}"
- name: Run Test
env:
TEST_FIRESTORE_IMAGE: gcr.io/google.com/cloudsdktool/google-cloud-cli:emulators
run: cd ./firestore && go test ./... -v -race