Skip to content

Commit

Permalink
Merge pull request #5 from radu-matei/mods
Browse files Browse the repository at this point in the history
Update to Go modules
  • Loading branch information
Radu M authored Mar 5, 2020
2 parents 981b6d0 + 1cd7bda commit 8883869
Show file tree
Hide file tree
Showing 1,491 changed files with 500 additions and 423,993 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: GitHub Actions
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go

- name: Check out code
uses: actions/checkout@v1

- name: Build, Test, Lint
run: |
export GOPATH=$HOME/go && export GOBIN=$(go env GOPATH)/bin && export PATH=$PATH:$GOPATH&& export PATH=$PATH:$GOBIN && mkdir -p $GOBIN
make bootstrap build test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
bin/
bin/
vendor/
Loading

0 comments on commit 8883869

Please sign in to comment.