Skip to content

Commit

Permalink
Merge pull request #17 from hahwul/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
hahwul authored Sep 25, 2024
2 parents 29ca5c3 + f7def7b commit e711004
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: RSpec
on:
pull_request:
jobs:
rspec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a `.ruby-version` or `.tool-versions`
bundler-cache: true # runs 'bundle install' and caches installed gems automaticallyz
- name: Test
run: bundle exec rspec -f j -o tmp/rspec_results.json -f p
- name: RSpec Report
uses: SonicGarden/rspec-report-action@v5
with:
json-path: tmp/rspec_results.json
if: always()
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ gem 'open-uri', '>= 0.4.0'
gem 'set'
gem 'sitemap-parser'
gem 'thor'
gem 'rspec'
19 changes: 19 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,37 @@ GEM
concurrent-ruby-edge (0.7.1)
concurrent-ruby (~> 1.3)
date (3.3.4)
diff-lcs (1.5.1)
ethon (0.16.0)
ffi (>= 1.15.0)
ffi (1.17.0-arm64-darwin)
ffi (1.17.0-x86_64-darwin)
ffi (1.17.0-x86_64-linux-gnu)
json (2.7.2)
nokogiri (1.16.7-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-darwin)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
open-uri (0.4.1)
stringio
time
uri
racc (1.8.1)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.1)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.1)
set (1.1.0)
sitemap-parser (0.5.6)
nokogiri (~> 1.6)
Expand All @@ -36,13 +53,15 @@ PLATFORMS
arm64-darwin-22
arm64-darwin-23
x86_64-darwin-21
x86_64-linux

DEPENDENCIES
colorize
concurrent-ruby-edge
json
nokogiri
open-uri (>= 0.4.0)
rspec
set
sitemap-parser
thor
Expand Down

0 comments on commit e711004

Please sign in to comment.