Skip to content

Commit

Permalink
Use GitHub Actions instead of Travis CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt authored and deivid-rodriguez committed May 31, 2020
1 parent 83cf440 commit e3ce220
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 16 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: test

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
ruby: [head, 2.6.0, 2.5.3, 2.4.5, 2.3.8]

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}

- name: Install dependencies
run: bundle install

- name: Run tests
run: rake
continue-on-error: matrix.ruby == '2.3.8' || matrix.ruby == '2.4.5'
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Webrick

[![Build Status](https://travis-ci.org/ruby/webrick.svg?branch=master)](https://travis-ci.org/ruby/webrick)

WEBrick is an HTTP server toolkit that can be configured as an HTTPS server, a proxy server, and a virtual-host server.

WEBrick features complete logging of both server operations and HTTP access.
Expand Down

0 comments on commit e3ce220

Please sign in to comment.