Skip to content

Merge pull request #106 from koki-develop/renovate/golang.org-x-mod-0.x #546

Merge pull request #106 from koki-develop/renovate/golang.org-x-mod-0.x

Merge pull request #106 from koki-develop/renovate/golang.org-x-mod-0.x #546

Workflow file for this run

name: ci
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- uses: codecov/codecov-action@v5
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- run: goreleaser release --snapshot --clean
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: lint
run: golangci-lint run --verbose ./...