Skip to content

Update readme. Shameless copying from bubblezone. #11

Update readme. Shameless copying from bubblezone.

Update readme. Shameless copying from bubblezone. #11

Workflow file for this run

name: tests and coverage
on:
push:
jobs:
tests_and_coverage:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21.x' ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: run tests
run: go test ./...
- name: run coverage
run: make coverage
- name: Upload codecov report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}