Skip to content

Commit 8883869

Browse files
author
Radu M
authored
Merge pull request #5 from radu-matei/mods
Update to Go modules
2 parents 981b6d0 + 1cd7bda commit 8883869

File tree

1,491 files changed

+500
-423993
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,491 files changed

+500
-423993
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: GitHub Actions
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
name: Build
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Set up Go 1.13
9+
uses: actions/setup-go@v1
10+
with:
11+
go-version: 1.13
12+
id: go
13+
14+
- name: Check out code
15+
uses: actions/checkout@v1
16+
17+
- name: Build, Test, Lint
18+
run: |
19+
export GOPATH=$HOME/go && export GOBIN=$(go env GOPATH)/bin && export PATH=$PATH:$GOPATH&& export PATH=$PATH:$GOBIN && mkdir -p $GOBIN
20+
21+
make bootstrap build test

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
bin/
1+
bin/
2+
vendor/

0 commit comments

Comments
 (0)