Skip to content

Bump github.com/gofiber/storage/sqlite3 from 1.3.7 to 1.3.8 in /backend #1326

Bump github.com/gofiber/storage/sqlite3 from 1.3.7 to 1.3.8 in /backend

Bump github.com/gofiber/storage/sqlite3 from 1.3.7 to 1.3.8 in /backend #1326

Workflow file for this run

---
name: Tests
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.19]
steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
working-directory: backend
- name: Test
run: go test -v ./...
working-directory: backend