Skip to content

Add new implementation: go-fiber-mustache-postgres #17

Add new implementation: go-fiber-mustache-postgres

Add new implementation: go-fiber-mustache-postgres #17

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Install dependencies
run: |
cd go-gin-sqlite
go version
go get -u "github.com/gin-gonic/gin"
go get -u "github.com/gin-contrib/gzip"
go get -u "github.com/mattn/go-sqlite3"
- name: Build
run: (cd go-gin-sqlite && go build -v ./...)