Skip to content

Introduce Context type #40

Introduce Context type

Introduce Context type #40

Workflow file for this run

on: [ push, pull_request ]
name: Build & Test
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...