File tree Expand file tree Collapse file tree 5 files changed +39
-25
lines changed Expand file tree Collapse file tree 5 files changed +39
-25
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ - push
5
+ - pull_request
6
+
7
+ jobs :
8
+ test :
9
+ runs-on : ubuntu-latest
10
+ strategy :
11
+ fail-fast : false
12
+ matrix :
13
+ ruby :
14
+ - 2.3
15
+ - 2.4
16
+ - 2.5
17
+ - 2.6
18
+ - 2.7
19
+ - ' 3.0'
20
+ - 3.1
21
+ - head
22
+ steps :
23
+ - name : Checkout code
24
+ uses : actions/checkout@v3
25
+ - name : Set up Ruby
26
+ uses : ruby/setup-ruby@v1
27
+ with :
28
+ ruby-version : ${{ matrix.ruby }}
29
+ bundler-cache : true
30
+ - name : rubocop
31
+ run : bundle exec rubocop
32
+ - name : test
33
+ run : bundle exec rake test
34
+ continue-on-error : ${{ matrix.ruby == 'head' }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
## Main
2
2
3
+ - Migrate CI from Travis CI to GitHub Actions (#101 )
4
+
3
5
## 0.3.1
4
6
5
7
- Relax puma dependency (#94 )
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ source 'https://rubygems.org'
4
4
5
5
gemspec
6
6
7
- gem 'rubocop' , require : false
7
+ # This is the last version which supports Ruby 2.3
8
+ gem 'rubocop' , '~> 0.81.0' , require : false
Original file line number Diff line number Diff line change 1
1
# Puma Worker Killer
2
2
3
- [ ![ Build Status ] ( https://travis-ci.org /schneems/puma_worker_killer.png?branch=master )] ( https://travis-ci.org /schneems/puma_worker_killer )
3
+ [ ![ CI ] ( https://github.com /schneems/puma_worker_killer/actions/workflows/ci.yml/badge.svg )] ( https://github.com /schneems/puma_worker_killer/actions/workflows/ci.yml )
4
4
[ ![ Help Contribute to Open Source] ( https://www.codetriage.com/schneems/puma_worker_killer/badges/users.svg )] ( https://www.codetriage.com/schneems/puma_worker_killer )
5
5
6
6
## !!!!!!!!!!!!!!!! STOP !!!!!!!!!!!!!!!!
You can’t perform that action at this time.
0 commit comments