Skip to content

Bump github.com/gofiber/fiber/v2 from 2.49.1 to 2.52.4 #100

Bump github.com/gofiber/fiber/v2 from 2.49.1 to 2.52.4

Bump github.com/gofiber/fiber/v2 from 2.49.1 to 2.52.4 #100

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
tags: '*'
pull_request:
branches: [ master ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v .
- name: Run Unit tests
run: go test -race ./...