Skip to content

Bump github.com/gofiber/fiber/v2 from 2.49.2 to 2.52.1 (#60) #200

Bump github.com/gofiber/fiber/v2 from 2.49.2 to 2.52.1 (#60)

Bump github.com/gofiber/fiber/v2 from 2.49.2 to 2.52.1 (#60) #200

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Run Service Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout current repo
- uses: actions/setup-go@v3
name: Install Go
with:
go-version: "1.20"
- name: Run static analysis
uses: golangci/golangci-lint-action@v3
with:
version: "v1.52.2"
args: --timeout=10m
- name: Run application
run: make start
- name: Run tests
run: make tests