mirror of
https://github.com/gofiber/storage.git
synced 2025-12-19 00:38:24 +08:00
- 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
30 lines
649 B
YAML
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
|