Skip to content

Enable dependabot (#2) #6

Enable dependabot (#2)

Enable dependabot (#2) #6

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
lint:
name: GolangCI Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: GolangCI Lint
uses: golangci/golangci-lint-action@v3
with:
# TODO: Update this version.
version: v1.60.2
args: --out-format=colored-line-number
test:
name: Go Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Go Test
run: go test -v ./...