Skip to content

Commit 5e78133

Browse files
committed
Replace Travis CI with GHA.
1 parent 5f9d0a2 commit 5e78133

File tree

3 files changed

+17
-19
lines changed

3 files changed

+17
-19
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: test
3+
on: [push, pull_request]
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v3
9+
- uses: ruby/setup-ruby@v1
10+
with:
11+
ruby-version: 3.4
12+
bundler-cache: true
13+
- run: bundle exec rake

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
Grape API with Roar
22
===================
33

4-
[![Build Status](https://travis-ci.org/ruby-grape/grape-with-roar.svg?branch=master)](https://travis-ci.org/ruby-grape/grape-with-roar)
5-
[![Dependency Status](https://gemnasium.com/ruby-grape/grape-with-roar.svg)](https://gemnasium.com/ruby-grape/grape-with-roar)
6-
[![Code Climate](https://codeclimate.com/github/ruby-grape/grape-with-roar.svg)](https://codeclimate.com/github/ruby-grape/grape-with-roar)
4+
[![test](https://github.com/ruby-grape/grape-with-roar/actions/workflows/test.yml/badge.svg)](https://github.com/ruby-grape/grape-with-roar/actions/workflows/test.yml)
75

86
A [Grape](http://github.com/ruby-grape/grape) API that uses [Roar](https://github.com/apotonick/roar).
97

10-
See
11-
---
12-
13-
Try me [here](http://grape-with-roar.herokuapp.com/). In Chrome, best viewed with the [JSONView Plugin](https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc?hl=en).
14-
158
Run
169
---
1710

@@ -24,10 +17,10 @@ $ rackup
2417
[2013-06-20 08:57:58] INFO WEBrick::HTTPServer#start: pid=247 port=9292
2518
```
2619

27-
### Hello World
28-
2920
Navigate to [localhost:9292/api](http://localhost:9292/api) with a browser. This is a hypermedia API, so all links are clickable.
3021

22+
In Chrome, best viewed with the [JSONView Plugin](https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc?hl=en).
23+
3124
Hyperclient
3225
-----------
3326

@@ -51,6 +44,6 @@ Check out the [with-mongoid branch](https://github.com/ruby-grape/grape-with-roa
5144
Copyright and License
5245
---------------------
5346

54-
Copyright (c) 2014-2016 Daniel Doubrovkine
47+
Copyright (c) 2014-2025 Daniel Doubrovkine
5548

5649
MIT License, see [LICENSE](LICENSE) for details.

0 commit comments

Comments
 (0)