File tree 3 files changed +30
-9
lines changed
3 files changed +30
-9
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ test :
11
+ runs-on : ubuntu-latest
12
+
13
+ strategy :
14
+ matrix :
15
+ ruby-version :
16
+ - 3.3
17
+ - 3.2
18
+ - 3.1
19
+ - " 3.0"
20
+ - jruby-9.4
21
+
22
+ steps :
23
+ - uses : actions/checkout@v4
24
+ - name : Set up Ruby ${{ matrix.ruby-version }}
25
+ uses : ruby/setup-ruby@v1
26
+ with :
27
+ ruby-version : ${{ matrix.ruby-version }}
28
+ bundler-cache : true # runs 'bundle install' and caches installed gems automatically
29
+ - name : Run tests
30
+ run : bundle exec rake
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- [ ![ Build Status] ( https://travis-ci.org/railslove/cmxl.svg?branch=master )] ( https://travis-ci.org/railslove/cmxl )
2
1
[ ![ Gem Version] ( https://badge.fury.io/rb/cmxl.svg )] ( http://badge.fury.io/rb/cmxl )
3
2
4
3
# Cmxl - your friendly ruby MT940 parser
You can’t perform that action at this time.
0 commit comments