Skip to content

Implement histogram #75

Implement histogram

Implement histogram #75

Workflow file for this run

name: Go
on:
push:
branches: ["main", "develop"]
pull_request:
branches: ["main", "develop"]
jobs:
lint-and-tests:
strategy:
matrix:
go-version: ["1.21.0", "1.22.0"]
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Tools
run: make install-tools
- name: Lint
run: make lint
- name: Test
run: make test
- name: Run sample
run: go run -race ./sample/...