Skip to content

Align with whitespace instead of zeroes #110

Align with whitespace instead of zeroes

Align with whitespace instead of zeroes #110

Workflow file for this run

name: build
on: [push]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: set up go
uses: actions/setup-go@v2
with:
go-version: 1.19.3
id: go
- name: git clone
uses: actions/checkout@v2
- name: go build
run: go build -v
- name: go test
run: go test -v -cover -coverpkg=./... -race ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.49.0
working-directory: ${{ env.working-directory }}