Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 3 commits into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading