Skip to content

deps(deps): bump github.com/ncruces/go-sqlite3 from 0.30.3 to 0.30.4 #101

deps(deps): bump github.com/ncruces/go-sqlite3 from 0.30.3 to 0.30.4

deps(deps): bump github.com/ncruces/go-sqlite3 from 0.30.3 to 0.30.4 #101

Workflow file for this run

name: CI
on:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: latest
- name: Install dependencies
run: go mod download
- name: Test for sqlite
run: go test -v ./...
- name: Test for dynamodb
run: go test -v ./...
env:
DB_DRIVER: dynamodb
DYNAMO_LOCAL: 1
DYNAMO_TABLE_NAME_PREFIX: test
services:
dynamodb:
image: amazon/dynamodb-local:latest
ports:
- 8000:8000