File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Test
3+
4+ on :
5+ pull_request :
6+ branches :
7+ - main
8+ push :
9+ branches :
10+ - main
11+
12+ jobs :
13+ test :
14+ runs-on : ${{ matrix.os }}
15+ strategy :
16+ fail-fast : false
17+ matrix :
18+ os : [ubuntu-latest, macos-latest]
19+ ruby : ['2.7', '3.0']
20+ steps :
21+ - uses : actions/checkout@v2
22+ - uses : ruby/setup-ruby@v1
23+ with :
24+ ruby-version : ${{ matrix.ruby }}
25+ - name : Install Dependencies
26+ run : |
27+ bundle install
28+ - name : Run Tests
29+ run : |
30+ bundle exec rspec spec
Original file line number Diff line number Diff line change @@ -7,4 +7,8 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
77# OmniAuth is what this strategy is providing
88gem "omniauth" , ">= 2.0"
99# Use Ruby-Eth for signature recovery
10- gem 'eth-patched' , '>= 0.4.14'
10+ gem 'eth' , '>= 0.4.16'
11+
12+ # Spec tests
13+ gem 'rspec' , '>= 3.10.0'
14+ gem 'rack-test'
You can’t perform that action at this time.
0 commit comments