Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adopt GitHub Actions to replace TravisCI #44

Merged
merged 1 commit into from
Sep 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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