Skip to content

Add renovate.json

Add renovate.json #8

Workflow file for this run

name: Build Lint and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build-lint-test:
name: Build Lint and Test
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.17'
- name: Build
run: make build
- name: Linting
run: make check
- name: Set up gotestfmt
uses: GoTestTools/gotestfmt-action@v2
with:
repo: gotestfmt
version: v2.2.0
- name: Unit Tests
run: make test