Skip to content

Bump github.com/gofiber/fiber/v2 from 2.40.0 to 2.52.2 #57

Bump github.com/gofiber/fiber/v2 from 2.40.0 to 2.52.2

Bump github.com/gofiber/fiber/v2 from 2.40.0 to 2.52.2 #57

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v ./src/cmd
- name: Test
run: go test ./src/...