Skip to content

Commit

Permalink
add GA
Browse files Browse the repository at this point in the history
  • Loading branch information
grosser committed Apr 26, 2023
1 parent 6f1587e commit 4346acf
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Thank you for your contribution!

## Checklist
- [ ] Added tests
- [ ] Updated Readme.md (if user facing behavior changed)
20 changes: 20 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['2.7', '3.0', '3.1']
name: ${{ matrix.ruby }} rake
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ source "https://rubygems.org"
gemspec

gem 'bump'
gem 'oniguruma', :platform => :ruby_18
gem 'ffi', :platform => [:mingw]
gem 'ffi', platform: [:mingw]
gem 'rake'
gem 'rspec', '~>2'
# gem 'dispel', :path => "~/Code/tools/dispel"
4 changes: 1 addition & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ GEM
dispel (0.0.7)
curses
language_sniffer (1.0.2)
oniguruma (1.1.0)
plist (3.1.0)
rake (10.1.1)
rspec (2.14.1)
Expand All @@ -37,10 +36,9 @@ PLATFORMS
DEPENDENCIES
bump
ffi
oniguruma
rake
rspec (~> 2)
ruco!

BUNDLED WITH
1.10.6
2.3.12
2 changes: 1 addition & 1 deletion ruco.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new name, Ruco::VERSION do |s|
s.files = `git ls-files lib bin MIT-LICENSE.txt spec/fixtures/railscasts.tmTheme`.split("\n")
s.executables = ["ruco"]
s.license = "MIT"
s.required_ruby_version = '>= 2.0.0' # curses does not build on 1.9
s.required_ruby_version = '>= 2.7.0'
s.add_runtime_dependency "clipboard", ">= 0.9.8"
s.add_runtime_dependency "textpow", ">= 1.3.0"
s.add_runtime_dependency "language_sniffer"
Expand Down

0 comments on commit 4346acf

Please sign in to comment.