mirror of
https://github.com/gofiber/storage.git
synced 2025-12-24 13:29:30 +08:00
18 lines
458 B
YAML
18 lines
458 B
YAML
on: [push, pull_request]
|
|
name: Memory
|
|
jobs:
|
|
Tests:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.14.x, 1.15.x]
|
|
platform: [ubuntu-latest, windows-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Fetch Repository
|
|
uses: actions/checkout@v2
|
|
- name: Run Test
|
|
run: go test ./memory -tags=memory -v -race |