Skip to content

build(deps): bump modernc.org/sqlite from 1.28.0 to 1.29.5 #456

build(deps): bump modernc.org/sqlite from 1.28.0 to 1.29.5

build(deps): bump modernc.org/sqlite from 1.28.0 to 1.29.5 #456

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
strategy:
matrix:
go: ['1.19','1.20', '1.21']
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
- run: go version
- uses: actions/checkout@v4
- name: go mod package cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.mod') }}
- name: Test
run: go test -v ./...