Skip to content

Removed misspelling

Removed misspelling #8

Workflow file for this run

name: Main
on:
push:
branches: [main]
pull_request: {}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test code
run: go test -v ./...