Skip to content

Commit b883aca

Browse files
authored
CI: Move ENV-var-setting Step
1 parent 5deb2f5 commit b883aca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
20-
- name: Set up Ruby
21-
uses: ruby/setup-ruby@v1
22-
with:
23-
ruby-version: ${{ matrix.entry.ruby }}
24-
bundler-cache: true # 'bundle install' and cache gems
2520
- name: Set Concurrency
2621
run: |
2722
if [[ ! -z "${{ matrix.entry.concurrency }}" ]]; then
2823
echo "Setting concurrency to ${{ matrix.entry.concurrency }}."
2924
echo "CONCURRENCY=${{ matrix.entry.concurrency }}" >> $GITHUB_ENV
3025
fi
26+
- name: Set up Ruby
27+
uses: ruby/setup-ruby@v1
28+
with:
29+
ruby-version: ${{ matrix.entry.ruby }}
30+
bundler-cache: true # 'bundle install' and cache gems
3131
- name: Run Tests
3232
continue-on-error: ${{ matrix.entry.ignore || false }}
3333
env:

0 commit comments

Comments
 (0)