Skip to content

Bump github.com/gofiber/template/handlebars/v2 from 2.1.5 to 2.1.6 #132

Bump github.com/gofiber/template/handlebars/v2 from 2.1.5 to 2.1.6

Bump github.com/gofiber/template/handlebars/v2 from 2.1.5 to 2.1.6 #132

Workflow file for this run

name: Go Test and Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-and-build:
name: Test and Build
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.x
- name: Run Tests
run: make test
- name: Build
run: make build