Skip to content

Commit 4f3914e

Browse files
committed
Downcase case-sensitive strings on GitHub Actions
1 parent fe01b61 commit 4f3914e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/setup-ruby/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
with:
1616
bundler-cache: true
1717
- name: Bundle Install with Caching
18-
if: ${{ inputs.job-name != 'Minitest' }}
18+
if: ${{ inputs.job-name != 'minitest' }}
1919
shell: bash
2020
working-directory: ./ruby
2121
run: |

.github/workflows/ruby.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- uses: actions/checkout@v6
8888
- uses: ./.github/actions/setup-ruby
8989
with:
90-
job-name: Minitest
90+
job-name: minitest
9191
- name: Minitest
9292
working-directory: ./ruby
9393
run: ruby test/application_test.rb
@@ -100,7 +100,7 @@ jobs:
100100
- uses: actions/checkout@v6
101101
- uses: ./.github/actions/setup-ruby
102102
with:
103-
job-name: RuboCop
103+
job-name: rubocop
104104
- name: RuboCop
105105
working-directory: ./ruby
106106
run: bundle exec rubocop
@@ -113,7 +113,7 @@ jobs:
113113
- uses: actions/checkout@v6
114114
- uses: ./.github/actions/setup-ruby
115115
with:
116-
job-name: Steep
116+
job-name: steep
117117
- name: Steep
118118
working-directory: ./ruby
119119
run: |

0 commit comments

Comments
 (0)