hishtory/.github/workflows/go-test.yml
Workflow config file is invalid. Please check your config file: yaml: line 18: did not find expected key

24 lines
480 B
YAML

name: Tests
on:
push:
branches: [ master ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Go test
if: !startsWith(github.event.head_commit.message, 'Release')
run: make test
- name: Build docker contains
run: make build-api build-static