Skip to content

fix mutations

fix mutations #12

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: setup go
uses: actions/setup-go@v2
with:
go-version: "1.21"
- name: build
run: go build -v ./...
- name: test
run: go test -v ./...