Skip to content

Commit d442c1b

Browse files
committed
added tests on PR
1 parent bd49614 commit d442c1b

File tree

3 files changed

+22
-96
lines changed

3 files changed

+22
-96
lines changed

.github/workflows/tests.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: PR
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
tests:
9+
name: go tests
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Install Go
13+
uses: actions/setup-go@v2
14+
with:
15+
go-version: 1.17.x
16+
- name: Check out code into the Go module directory
17+
uses: actions/checkout@v2
18+
- name: run tests
19+
run: |
20+
export GOPATH=$HOME/go
21+
export PATH=$PATH:$GOPATH/bin
22+
go tests ./... -v

.travis.yml

-35
This file was deleted.

Makefile

-61
This file was deleted.

0 commit comments

Comments
 (0)