Skip to content

Bumping to newer go (at least 1.16) and using the embed technique instead of needing textFileToGoConst #204

Bumping to newer go (at least 1.16) and using the embed technique instead of needing textFileToGoConst

Bumping to newer go (at least 1.16) and using the embed technique instead of needing textFileToGoConst #204

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.16', '1.17', '1.18', '1.19', '1.20','1.21' ]
services: { }
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Run tests
run: go test -v -tags 'sqlite' -race ./...