Skip to content

Bump modernc.org/sqlite from 1.34.2 to 1.34.3 #418

Bump modernc.org/sqlite from 1.34.2 to 1.34.3

Bump modernc.org/sqlite from 1.34.2 to 1.34.3 #418

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: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.1'
- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.60.3
- name: Build
run: go build -v ./...
- name: Lint
run: golangci-lint run --fix
- name: Test
run: go test -v ./...