Skip to content

feat: use camelcase in config file (#67) #253

feat: use camelcase in config file (#67)

feat: use camelcase in config file (#67) #253

Workflow file for this run

# SPDX-License-Identifier: MIT
name: build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
name: lint and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: '1.21.5'
- name: make verify
run: make verify
- name: make lint
run: make golangci-lint && GOLANGCI_LINT_EXTRA_ARGS=--timeout=1h make lint
- name: make test
run: make test