Skip to content

Commit

Permalink
workflow optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
invalidusrname committed Dec 1, 2024
1 parent 7b85d9f commit 293c82d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 18 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/2018-ruby.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,5 @@ jobs:
with:
ruby-version: ${{ steps.determine-ruby-version.outputs.VERSION }}
bundler-cache: true
- name: Install gems
run: |
gem update bundler
bundle
- name: Run tests
run: bundle exec rspec
4 changes: 0 additions & 4 deletions .github/workflows/2021-ruby.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,5 @@ jobs:
with:
ruby-version: ${{ steps.determine-ruby-version.outputs.VERSION }}
bundler-cache: true
- name: Install gems
run: |
gem update bundler
bundle
- name: Run tests
run: bundle exec rspec
10 changes: 0 additions & 10 deletions .github/workflows/2024-ruby.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Determine ruby version
id: determine-ruby-version
run: |
VERSION=$(cat .ruby-version)
echo "VERSION=${VERSION}" >> "$GITHUB_OUTPUT"
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ steps.determine-ruby-version.outputs.VERSION }}
bundler-cache: true
- name: Install gems
run: |
gem update bundler
bundle
- name: Run tests
run: bundle exec rspec

0 comments on commit 293c82d

Please sign in to comment.