Switch from Travis CI to GitHub Actions

This commit is contained in:
James Coglan
2021-05-17 23:33:31 +01:00
parent dfa7cae1e8
commit e5406a7575
3 changed files with 30 additions and 19 deletions
+29
View File
@@ -0,0 +1,29 @@
on:
- push
- pull_request
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby:
- ruby-2.1
- ruby-2.2
- ruby-2.3
- ruby-2.4
- ruby-2.5
- ruby-2.6
- ruby-2.7
- ruby-3.0
- jruby-9.1
- jruby-9.2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: ruby --version
- run: bundle exec rspec
-18
View File
@@ -1,18 +0,0 @@
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.2
- 3.0.0
- jruby-9.2
script:
- bundle exec rspec
+1 -1
View File
@@ -1,4 +1,4 @@
# permessage_deflate [![Build status](https://secure.travis-ci.org/faye/permessage-deflate-ruby.svg)](http://travis-ci.org/faye/permessage-deflate-ruby)
# permessage_deflate
Implements the
[permessage-deflate](https://tools.ietf.org/html/draft-ietf-hybi-permessage-compression)