Skip to content

Bump modernc.org/sqlite (#934) #2834

Bump modernc.org/sqlite (#934)

Bump modernc.org/sqlite (#934) #2834

Workflow file for this run

name: CI
on:
pull_request: {}
push:
branches:
- master
- release/*
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name : Checkout repository
# https://github.com/actions/checkout/releases/tag/v4.1.1
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- name: Install Go
# https://github.com/actions/setup-go/releases/tag/v5.0.0
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: 'go.mod'
- name: Install mockgen
run: go install go.uber.org/mock/[email protected]
- name: Install msgp
run: go install github.com/tinylib/msgp
- name: Install golangci-lint
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6.5.2
with:
version: v1.64.8
- name: Install env-test
run: go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
- name: Build
run: make build-bin
- name: Test
run: make test
- name: Validate
run: make validate