Skip to content

Bump github.com/gofiber/fiber/v2 from 2.49.1 to 2.50.0 (#28) #17

Bump github.com/gofiber/fiber/v2 from 2.49.1 to 2.50.0 (#28)

Bump github.com/gofiber/fiber/v2 from 2.49.1 to 2.50.0 (#28) #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 'stable'
- name: Build
run: go build -v .
- name: Test install on Linux
if: matrix.os == 'ubuntu-latest'
run: make test-linux
- name: Test install on Windows
if: matrix.os == 'windows-latest'
run: make test-windows
- name: Test install on macOS
if: matrix.os == 'macOS-latest'
run: make test-macos