mirror of
https://github.com/gofiber/storage.git
synced 2026-04-22 23:07:21 +08:00
43c46d352e
Agent-Logs-Url: https://github.com/gofiber/storage/sessions/925fcfc5-f9cd-453a-b814-832655f63b82 Co-authored-by: gaby <835733+gaby@users.noreply.github.com>
33 lines
659 B
YAML
33 lines
659 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
|
|
- 1.26.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
|