1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-16 04:44:55 +02:00

Adding .github/workflows/test.yml

This commit is contained in:
Henrik Hautakoski 2022-08-16 20:03:54 +02:00
parent 14c4e3764c
commit 589e2ad679
No known key found for this signature in database
GPG key ID: 608414D93E862CCD

20
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Go
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
- name: Test
run: go test -v ./...