Skip to content

Merge pull request #110 from gofiber/dependabot/go_modules/github.com… #268

Merge pull request #110 from gofiber/dependabot/go_modules/github.com…

Merge pull request #110 from gofiber/dependabot/go_modules/github.com… #268

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Test
jobs:
Tests:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Setup Golang caches
uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
~\AppData\Local\go-build
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-
- name: Fetch Repository
uses: actions/checkout@v3
- name: Run Test
run: go test ./... -v -race