Skip to content

Commit

Permalink
Merge pull request #377 from jkroepke/bashcov
Browse files Browse the repository at this point in the history
  • Loading branch information
jkroepke authored May 21, 2023
2 parents 6ccb2a2 + 9bbfc07 commit f680e32
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,10 @@ jobs:
submodules: true
fetch-depth: 0

- name: Setup Ruby 2.6
- name: Setup Ruby 3.0
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
ruby-version: "3.0"

- name: Setup Helm
uses: azure/[email protected]
Expand All @@ -258,7 +258,7 @@ jobs:
version: ${{ env.VERSION_VALS }}

- name: Install bashcov
run: gem install bashcov:'< 2' simplecov-cobertura:'< 2'
run: bundle install

- name: Print Environment
run: |-
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ coverage
.netrc

test*.sh
/vendor
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

gem 'bashcov', '~> 3.0', '>= 3.0.2'
gem 'simplecov-cobertura'
26 changes: 26 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
GEM
remote: https://rubygems.org/
specs:
bashcov (3.0.2)
simplecov (~> 0.21.2)
docile (1.4.0)
rexml (3.2.5)
simplecov (0.21.2)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-cobertura (2.1.0)
rexml
simplecov (~> 0.19)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)

PLATFORMS
x86_64-darwin-22

DEPENDENCIES
bashcov (~> 3.0, >= 3.0.2)
simplecov-cobertura

BUNDLED WITH
2.4.10

0 comments on commit f680e32

Please sign in to comment.