Skip to content

Add gitignore

Add gitignore #65

Workflow file for this run

name: Test
on: push
env:
GO111MODULE: on
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.22', '1.22.x' ]
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Vet
run: go vet ./...
- name: Test
run: go test -bench=. -covermode=atomic -coverpkg=github.com/msales/streams/... ./...