Skip to content

Commit 293c82d

Browse files
workflow optimizations
1 parent 7b85d9f commit 293c82d

File tree

3 files changed

+0
-18
lines changed

3 files changed

+0
-18
lines changed

.github/workflows/2018-ruby.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,5 @@ jobs:
2626
with:
2727
ruby-version: ${{ steps.determine-ruby-version.outputs.VERSION }}
2828
bundler-cache: true
29-
- name: Install gems
30-
run: |
31-
gem update bundler
32-
bundle
3329
- name: Run tests
3430
run: bundle exec rspec

.github/workflows/2021-ruby.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,5 @@ jobs:
2626
with:
2727
ruby-version: ${{ steps.determine-ruby-version.outputs.VERSION }}
2828
bundler-cache: true
29-
- name: Install gems
30-
run: |
31-
gem update bundler
32-
bundle
3329
- name: Run tests
3430
run: bundle exec rspec

.github/workflows/2024-ruby.yaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v3
19-
- name: Determine ruby version
20-
id: determine-ruby-version
21-
run: |
22-
VERSION=$(cat .ruby-version)
23-
echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT"
2419
- name: Set up Ruby
2520
uses: ruby/setup-ruby@v1
2621
with:
27-
ruby-version: ${{ steps.determine-ruby-version.outputs.VERSION }}
2822
bundler-cache: true
29-
- name: Install gems
30-
run: |
31-
gem update bundler
32-
bundle
3323
- name: Run tests
3424
run: bundle exec rspec

0 commit comments

Comments
 (0)