Skip to content

test-contract

test-contract #866

Workflow file for this run

name: test-contract
on:
schedule:
- cron: '0 8 * * *'
jobs:
test:
strategy:
matrix:
go-version: [1.17.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: Install Ginkgo
run: go get -u github.com/onsi/ginkgo/ginkgo@v1.16.4
- name: Test
run: ginkgo -cover -focus="GetQuotes Response" ./...