Skip to content

Configure groups for Dependabot updates #341

Configure groups for Dependabot updates

Configure groups for Dependabot updates #341

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches:
- "**"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: "1.25"
- run: go vet ./...
- run: make up
- name: Check generated codes
run: |
go mod tidy
go run tool/modelgen/main.go
go run tool/rdmegen/main.go
make fmt
git diff --exit-code
- run: make testci
- uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage.out