mirror of
https://github.com/gofiber/storage.git
synced 2025-12-19 00:38:24 +08:00
32 lines
640 B
YAML
32 lines
640 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- main
|
|
paths:
|
|
- 'minio/**'
|
|
pull_request:
|
|
paths:
|
|
- 'minio/**'
|
|
workflow_dispatch:
|
|
name: "Tests Minio"
|
|
jobs:
|
|
Tests:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go-version:
|
|
- 1.24.x
|
|
- 1.25.x
|
|
steps:
|
|
- name: Fetch Repository
|
|
uses: actions/checkout@v6
|
|
- name: Install Go
|
|
uses: actions/setup-go@v6
|
|
with:
|
|
go-version: '${{ matrix.go-version }}'
|
|
- name: Run Test
|
|
env:
|
|
TEST_MINIO_IMAGE: docker.io/minio/minio:latest
|
|
run: cd ./minio && go test ./... -v -race
|