Skip to content

Commit

Permalink
Merge pull request #18 from takano32/GitHub-Actions
Browse files Browse the repository at this point in the history
Migrate CI/CD platform from Travis CI to GitHub Actions
  • Loading branch information
mziyut committed May 9, 2023
2 parents ad0dcfb + 94f3d54 commit ea78c89
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: RSpec

on:
push:
pull_request:

jobs:
rspec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.3.1'
bundler-cache: true
- run: gem install bundler -v '< 2.0'
- run: bundle install
- run: bundle exec rake spec
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ spec/reports
test/tmp
test/version_tmp
tmp
/vendor/
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Unreleased

- Migrate CI/CD platform from Travis CI to GitHub Actions

## v1.3.5

- Add project reaction methods
Expand Down
2 changes: 1 addition & 1 deletion qiita.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "json_schema"
spec.add_development_dependency "pry"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "2.14.1"
spec.add_development_dependency "rspec"
spec.add_development_dependency "webmock", "1.20.4"
end

0 comments on commit ea78c89

Please sign in to comment.