hishtory/.github/workflows/go-test.yml

20 lines
340 B
YAML
Raw Normal View History

name: Tests
2022-04-09 20:56:25 +02:00
on:
push:
2022-04-09 20:58:49 +02:00
branches: [ master ]
2022-04-09 20:56:25 +02:00
jobs:
test:
2022-04-09 20:56:25 +02:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Go test
2022-04-09 20:56:25 +02:00
run: make test
- name: Build docker contains
run: make build-api build-static