Skip to content

Commit

Permalink
switch to use github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmmetz committed Sep 8, 2021
1 parent 61a4a9c commit 7c56009
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 56 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: install go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: build
run: go build -v ./...
- name: test
run: go test -v -race ./...
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

35 changes: 0 additions & 35 deletions Makefile

This file was deleted.

6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@ Goruntime is a Go client for Runtime application level feature flags and configu
go get github.com/lyft/goruntime
```

## Building

```
make bootstrap && make tests
```

## Usage

In order to start using goruntime, import it to your project with:
Expand Down

0 comments on commit 7c56009

Please sign in to comment.