Skip to content

Clarifications of functions naming #4

Clarifications of functions naming

Clarifications of functions naming #4

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.23.x
- uses: golangci/golangci-lint-action@v6
with:
version: v1.63.2
test:
strategy:
matrix:
go-version: [ 1.23.x ]
goarch: [ "amd64", "386" ]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
env:
GOARCH: ${{ matrix.goarch }}
- name: test
env:
GOARCH: ${{ matrix.goarch }}
run: go test $([[ "x$GOARCH" == "xamd64" ]] && echo "-race" || echo "" ) ./...