Skip to content

release 0.1.0

release 0.1.0 #71

Workflow file for this run

name: Build & Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
cache: true
- name: Download Go modules
run: go mod download
- name: Build
run: go build ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}