Skip to content

Bump github.com/gofiber/fiber/v2 from 2.40.0 to 2.43.0 #115

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

Bump github.com/gofiber/fiber/v2 from 2.40.0 to 2.43.0 #115

Workflow file for this run

name: Go
on:
push:
branches:
- '**'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.16
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v2
- name: goreadme
uses: posener/goreadme@v1.4.0
with:
recursive: true
badge-codecov: true
badge-godoc: true
badge-goreportcard: true
- name: Generate coverage report
run: |
go test `go list ./... | grep -v examples` -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage report
uses: codecov/codecov-action@v1.0.2
with:
file: ./coverage.txt
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}