Skip to content

Merge pull request #2 from nelzkiddom/nelz-ctx #5

Merge pull request #2 from nelzkiddom/nelz-ctx

Merge pull request #2 from nelzkiddom/nelz-ctx #5

Workflow file for this run

name: Go
# From https://github.com/actions/starter-workflows/blob/main/ci/go.yml
# on:
# push:
# branches: [ $default-branch ]
# pull_request:
# branches: [ $default-branch ]
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...