File tree Expand file tree Collapse file tree 3 files changed +43
-13
lines changed Expand file tree Collapse file tree 3 files changed +43
-13
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+ on :
3
+ push :
4
+ branches : ['*']
5
+ pull_request :
6
+ branches : ['*']
7
+
8
+ jobs :
9
+ test_sqlite :
10
+ runs-on : ubuntu-latest
11
+ strategy :
12
+ fail-fast : false
13
+ matrix :
14
+ include :
15
+ # ## TEST ALL RUBY VERSIONS
16
+ - ruby : 2.3 # ## min version supported by Bundler 2.x, ruby: 2.3
17
+ - ruby : 2.4
18
+ - ruby : 2.5
19
+ - ruby : 2.6
20
+ - ruby : 2.7
21
+ - ruby : " 3.0" # ## must be quoted otherwise will be treated as "3" which resolves to latest 3.x version
22
+ - ruby : 3.1
23
+
24
+ env :
25
+ BUNDLE_GEMFILE : " ${{ matrix.gemfile }}"
26
+
27
+ steps :
28
+ - uses : actions/checkout@v2
29
+
30
+ - name : Install ruby
31
+ uses : ruby/setup-ruby@v1
32
+ with :
33
+ ruby-version : " ${{ matrix.ruby }}"
34
+
35
+ - name : Bundle
36
+ run : |
37
+ gem install bundler
38
+ bundle install
39
+
40
+ - name : Run tests
41
+ run : |
42
+ bundle exec rake
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
## EasyTranslate
2
2
3
- [ ![ Build Status ] ( https://secure.travis-ci.org /seejohnrun/easy_translate.png )] ( http ://travis-ci.org /seejohnrun/easy_translate)
3
+ < a href = ' https://github.com /seejohnrun/easy_translate/actions ' target = ' _blank ' >< img src = " https ://github.com /seejohnrun/easy_translate/workflows/Test/badge.svg " style = " max-width : 100 % ; " height = ' 21 ' style = ' border : 0 px ; height : 21 px ; ' border = ' 0 ' alt = " CI Status " ></ a >
4
4
5
5
This is a Ruby library for Google Translate that makes working with bulk calls,
6
6
user_ips and access via API Key easy.
You can’t perform that action at this time.
0 commit comments