Skip to content

Merge pull request #4 from hayageek/new_apis_updated #14

Merge pull request #4 from hayageek/new_apis_updated

Merge pull request #4 from hayageek/new_apis_updated #14

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Build
run: go build ./...
- name: Run tests
run: go test ./...