Skip to content

#396 added example for the issue #396 #209

#396 added example for the issue #396

#396 added example for the issue #396 #209

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.19.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: TMPDIR=$RUNNER_TEMP go test -v ./...