Skip to content

Commit dddc501

Browse files
hsbtdeivid-rodriguez
authored andcommitted
Use GitHub Actions instead of Travis CI
1 parent 83cf440 commit dddc501

File tree

3 files changed

+27
-16
lines changed

3 files changed

+27
-16
lines changed

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
ruby: [head, 2.6.0, 2.5.3, 2.4.5, 2.3.8]
12+
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v2
16+
17+
- name: Set up Ruby
18+
uses: ruby/setup-ruby@v1
19+
with:
20+
ruby-version: ${{ matrix.ruby }}
21+
22+
- name: Install dependencies
23+
run: bundle install
24+
25+
- name: Run tests
26+
run: rake
27+
continue-on-error: ${{ matrix.ruby == '2.3.8' || matrix.ruby == '2.4.5' }}

.travis.yml

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

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Webrick
22

3-
[![Build Status](https://travis-ci.org/ruby/webrick.svg?branch=master)](https://travis-ci.org/ruby/webrick)
4-
53
WEBrick is an HTTP server toolkit that can be configured as an HTTPS server, a proxy server, and a virtual-host server.
64

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

0 commit comments

Comments
 (0)