Skip to content

chore: Configure Renovate #30

chore: Configure Renovate

chore: Configure Renovate #30

name: Build and Test on PR
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: 1.26
- name: Run tests
run: go test -v ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
- name: Run linters
run: golangci-lint run
- name: Build
run: go build -v