Skip to content

Commit 002c72a

Browse files
committed
Switch from Travis CI to GitHub Actions
1 parent a418b65 commit 002c72a

File tree

3 files changed

+26
-20
lines changed

3 files changed

+26
-20
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
on:
2+
- push
3+
- pull_request
4+
5+
jobs:
6+
test:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
ruby:
11+
- ruby-2.4
12+
- ruby-2.5
13+
- ruby-2.6
14+
- ruby-2.7
15+
- ruby-3.0
16+
- jruby-9.2
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v2
20+
- uses: ruby/setup-ruby@v1
21+
with:
22+
ruby-version: ${{ matrix.ruby }}
23+
bundler-cache: true
24+
- run: ruby --version
25+
- run: bundle exec rspec

.travis.yml

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# faye-websocket [![Build status](https://secure.travis-ci.org/faye/faye-websocket-ruby.svg)](http://travis-ci.org/faye/faye-websocket-ruby)
1+
# faye-websocket
22

33
This is a general-purpose WebSocket implementation extracted from the
44
[Faye](http://faye.jcoglan.com) project. It provides classes for easily building

0 commit comments

Comments
 (0)