File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ name : REXML
2+ on :
3+ schedule :
4+ - cron : |
5+ 0 0 * * 0
6+ workflow_dispatch :
7+ jobs :
8+ test :
9+ name : ${{ matrix.runs-on }}
10+ runs-on : ${{ matrix.runs-on }}
11+ strategy :
12+ fail-fast : false
13+ matrix :
14+ runs-on :
15+ - ubuntu-latest
16+ - macos-latest
17+ - windows-latest
18+ env :
19+ RSS_REXML_PATH : ${{ github.workspace }}/rexml
20+ steps :
21+ - uses : actions/checkout@v4
22+ - uses : actions/checkout@v4
23+ with :
24+ path : rexml
25+ repository : ruby/rexml
26+ - uses : ruby/setup-ruby@v1
27+ with :
28+ ruby-version : ruby
29+ bundler-cache : true
30+ - name : Test
31+ run : bundle exec rake test
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
55# Specify your gem's dependencies in rss.gemspec
66gemspec
77
8+ rexml_path = ENV [ "RSS_REXML_PATH" ]
9+ if rexml_path
10+ gem "rexml" , path : rexml_path
11+ end
12+
813group :development do
914 gem "bundler"
1015 gem "rake"
You can’t perform that action at this time.
0 commit comments