Skip to content

fix(renovate): explicitly enable minor and patch updates #667

fix(renovate): explicitly enable minor and patch updates

fix(renovate): explicitly enable minor and patch updates #667

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request: {}
defaults:
run:
shell: bash
jobs:
test:
name: Test Go ${{ matrix.go }}
runs-on: ubuntu-latest
strategy:
matrix:
go:
- 'stable'
- 'oldstable'
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version: ${{ matrix.go }}
- name: Build
run: |
go mod download
go build ./...
- name: Run Tests
run: |
go test -v ./...