Skip to content

Finish gendiff

Finish gendiff #62

Workflow file for this run

name: test-and-lint
on:
push:
branches:
- '**'
tags:
- '**'
jobs:
check-project-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
cache: true
- name: Install dependencies
run: |
go mod download
go mod tidy
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Verify installation
run: |
which golangci-lint
golangci-lint version
- name: Run tests
run: make test
- name: Run linter
run: make lint