Skip to content

Merge pull request #1344 from gofiber/dependabot/go_modules/mongodb/g… #4

Merge pull request #1344 from gofiber/dependabot/go_modules/mongodb/g…

Merge pull request #1344 from gofiber/dependabot/go_modules/mongodb/g… #4

Workflow file for this run

on:
push:
branches:
- master
- main
paths:
- 'memory/**'
pull_request:
paths:
- 'memory/**'
name: "Tests Local Storage"
jobs:
Tests:
strategy:
matrix:
go-version:
- 1.19.x
- 1.20.x
- 1.21.x
runs-on: ubuntu-latest
steps:
- name: Fetch Repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: '${{ matrix.go-version }}'
- name: Test Memory
run: cd ./memory && go test ./... -v -race