Skip to content

chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.18 #387

chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.18

chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.18 #387

Workflow file for this run

name: Go
on:
push:
pull_request:
jobs:
build:
name: Build and Unit Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Check out code
uses: actions/checkout@v3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -race -covermode=atomic -coverprofile=coverage.txt
- name: Upload coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)