Skip to content

Merge remote-tracking branch 'origin/master' #11

Merge remote-tracking branch 'origin/master'

Merge remote-tracking branch 'origin/master' #11

Workflow file for this run

name: master
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Setup SSH Keys and known_hosts
uses: webfactory/ssh-agent@v0.4.1
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Go Test
run: go test -timeout 9000s -cover -a -v ./...