Skip to content

chore: Normalize flag names from snake_case to kebab-case #184

chore: Normalize flag names from snake_case to kebab-case

chore: Normalize flag names from snake_case to kebab-case #184

Workflow file for this run

name: CI
on:
push:
tags:
- v*
branches:
- main
- develop
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
cache: true
- name: get dependencies
run: go get -v -t -d ./...
- name: testing
run: go test -shuffle on ./...