Skip to content

add support for recipe subtype (#13) #57

add support for recipe subtype (#13)

add support for recipe subtype (#13) #57

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Build
runs-on: ubuntu-latest
steps:
- name: Download Go
uses: actions/setup-go@v2
id: go
- name: Checkout Project
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
env:
GOPROXY: "https://proxy.golang.org"
run: go build .
- name: Test
env:
GOPROXY: "https://proxy.golang.org"
run: go test -v .