Skip to content

Commit

Permalink
chore(): Update breaking change in the upload artifact to include hid…
Browse files Browse the repository at this point in the history
…den files (#13)

* chore(): Update breaking change in the upload artifact to include hidden files

* chore(): Bump the rubocop version

Signed-off-by: Jon Stairs <jonathan.stairs@rewind.com>

* use bundler 2.10.19

Signed-off-by: Jon Stairs <jonathan.stairs@rewind.com>

---------

Signed-off-by: Jon Stairs <jonathan.stairs@rewind.com>
Co-authored-by: Jon Stairs <jonathan.stairs@rewind.com>
  • Loading branch information
stairsj and Jon Stairs authored Sep 3, 2024
1 parent dac553d commit 016d910
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 49 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,40 +7,40 @@ jobs:
name: rspec tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true

- name: Run rspec tests
run: |
bundle exec rspec
- name: Upload coverage results
uses: actions/upload-artifact@v3
with:
name: coverage-results
path: coverage
retention-days: 5

- name: Check out code
uses: actions/checkout@v4

- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
bundler-cache: true

- name: Run rspec tests
run: |
bundle exec rspec
- name: Upload coverage results
uses: actions/upload-artifact@v3
with:
include-hidden-files: 'true'
name: coverage-results
path: coverage
retention-days: 5
coverage:
needs: rspec
runs-on: ubuntu-latest
steps:
- name: Download coverage results
uses: actions/download-artifact@v3
with:
name: coverage-results
path: coverage

- name: Simplecov Report
uses: aki77/simplecov-report-action@7fd5fa551dd583dd437a11c640b2a1cf23d6cdaa # v1.5.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
failedThreshold: 100
resultPath: coverage/.last_run.json
- name: Download coverage results
uses: actions/download-artifact@v3
with:
name: coverage-results
path: coverage

- name: Simplecov Report
uses: aki77/simplecov-report-action@7fd5fa551dd583dd437a11c640b2a1cf23d6cdaa # v1.5.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
failedThreshold: 100
resultPath: coverage/.last_run.json
29 changes: 13 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GEM
specs:
ansi (1.5.0)
ast (2.4.2)
base64 (0.1.1)
base64 (0.2.0)
coderay (1.1.3)
diff-lcs (1.5.0)
docile (1.4.0)
Expand All @@ -20,7 +20,7 @@ GEM
ruby2_keywords (>= 0.0.4)
faraday-net_http (3.0.2)
hashie (5.0.0)
json (2.6.3)
json (2.7.2)
jwt (2.7.1)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
Expand All @@ -39,21 +39,20 @@ GEM
omniauth-oauth2 (1.8.0)
oauth2 (>= 1.4, < 3)
omniauth (~> 2.0)
parallel (1.23.0)
parser (3.2.2.3)
parallel (1.26.3)
parser (3.3.4.2)
ast (~> 2.4.1)
racc
pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
racc (1.7.1)
racc (1.8.1)
rack (2.2.8)
rack-protection (3.1.0)
rack (~> 2.2, >= 2.2.4)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.1)
rexml (3.2.6)
regexp_parser (2.9.2)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
Expand All @@ -67,20 +66,18 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.4)
rubocop (1.56.3)
base64 (~> 0.1.1)
rubocop (1.66.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.2.3)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.1, < 2.0)
regexp_parser (>= 2.4, < 3.0)
rubocop-ast (>= 1.32.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.29.0)
parser (>= 3.2.1.0)
rubocop-ast (1.32.2)
parser (>= 3.3.1.0)
rubocop-capybara (2.19.0)
rubocop (~> 1.41)
rubocop-factory_bot (2.24.0)
Expand Down Expand Up @@ -109,7 +106,7 @@ GEM
version_gem (~> 1.1, >= 1.1.1)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
unicode-display_width (2.4.2)
unicode-display_width (2.5.0)
version_gem (1.1.3)

PLATFORMS
Expand Down

0 comments on commit 016d910

Please sign in to comment.