Skip to content

Commit

Permalink
Try to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Apr 5, 2024
1 parent 1b084e0 commit 7644481
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 17 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/exercise-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
ruby-version: [3.0, 3.1, 3.2]

steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11

- name: Set up Ruby
uses: ruby/setup-ruby@af848b40be8bb463a751551a1180d74782ba8a72
uses: ruby/setup-ruby@5f19ec79cedfadb78ab837f95b87734d0003c899
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
Expand All @@ -32,3 +32,6 @@ jobs:

- name: Test exercises
run: bundle exec rake test

- name: Get latest SHA
run: echo ${{ github.sha }}
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gem 'rubocop', '~> 1.50.0', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-rake', require: false
gem 'simplecov', require: false
gem 'racc', require: false
36 changes: 21 additions & 15 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,19 @@ GEM
specs:
ast (2.4.2)
docile (1.4.0)
json (2.6.3)
minitest (5.14.4)
mocha (1.13.0)
parallel (1.23.0)
parser (3.2.2.1)
json (2.7.2)
minitest (5.22.3)
mocha (2.1.0)
ruby2_keywords (>= 0.0.5)
parallel (1.24.0)
parser (3.3.0.5)
ast (~> 2.4.1)
racc
racc (1.7.3)
rainbow (3.1.1)
rake (13.0.6)
regexp_parser (2.8.0)
rexml (3.2.5)
rake (13.2.1)
regexp_parser (2.9.0)
rexml (3.2.6)
rubocop (1.50.2)
json (~> 2.3)
parallel (~> 1.10)
Expand All @@ -23,27 +26,30 @@ GEM
rubocop-ast (>= 1.28.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.28.0)
parser (>= 3.2.1.0)
rubocop-minitest (0.15.0)
rubocop (>= 0.90, < 2.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-minitest (0.34.5)
rubocop (>= 1.39, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
ruby-progressbar (1.13.0)
simplecov (0.21.2)
ruby2_keywords (0.0.5)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.3)
unicode-display_width (2.4.2)
simplecov_json_formatter (0.1.4)
unicode-display_width (2.5.0)

PLATFORMS
ruby

DEPENDENCIES
minitest
mocha
racc
rake
rubocop (~> 1.50.0)
rubocop-minitest
Expand Down

0 comments on commit 7644481

Please sign in to comment.