File tree Expand file tree Collapse file tree 5 files changed +44
-10
lines changed
Expand file tree Collapse file tree 5 files changed +44
-10
lines changed Original file line number Diff line number Diff line change 1+ name : Tests
2+ on :
3+ push :
4+ branches :
5+ - master
6+ - " *-stable"
7+ - " */ci-check"
8+ pull_request :
9+
10+ jobs :
11+ tests :
12+ name : Tests
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ ruby : [2.6, 2.7, 3.0]
17+ runs-on : ubuntu-latest
18+ steps :
19+ - name : Checkout code
20+ uses : actions/checkout@v2
21+
22+ - name : Setup Ruby
23+ uses : ruby/setup-ruby@v1
24+ with :
25+ ruby-version : ${{ matrix.ruby }}
26+ bundler-cache : true
27+
28+ - name : Run tests
29+ run : bundle exec rake
Original file line number Diff line number Diff line change 1+ --format documentation
2+ --color
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- paggio (0.2.4 )
4+ paggio (0.3.0 )
55
66GEM
77 remote: https://rubygems.org/
@@ -24,3 +24,6 @@ DEPENDENCIES
2424 paggio !
2525 rake
2626 rspec
27+
28+ BUNDLED WITH
29+ 2.1.4
Original file line number Diff line number Diff line change 11#! /usr/bin/env ruby
2+
3+ require 'bundler/setup'
4+ require 'bundler/gem_tasks'
25require 'rake'
36
4- task :default => :test
7+ require "rspec/core/rake_task"
8+ RSpec ::Core ::RakeTask . new ( :rspec )
59
6- task :test do
7- FileUtils . cd 'spec' do
8- sh 'rspec css_spec.rb html_spec.rb --backtrace --color --format doc'
9- end
10- end
10+ task :default => :rspec
Original file line number Diff line number Diff line change 11Gem ::Specification . new { |s |
22 s . name = 'paggio'
3- s . version = '0.2.6 '
3+ s . version = '0.3.0 '
44 s . author = 'meh.'
556- s . homepage = 'http://github.com/meh /paggio'
6+ s . homepage = 'http://github.com/opal /paggio'
77 s . platform = Gem ::Platform ::RUBY
88 s . summary = 'Ruby, HTML and CSS at war.'
9- s . license = 'WTFPL'
9+ s . license = 'WTFPL'
1010
1111 s . files = `git ls-files` . split ( "\n " )
1212 s . executables = `git ls-files -- bin/*` . split ( "\n " ) . map { |f | File . basename ( f ) }
You can’t perform that action at this time.
0 commit comments