Skip to content

Commit

Permalink
+_+
Browse files Browse the repository at this point in the history
  • Loading branch information
leonovk committed May 12, 2024
1 parent 2e41f50 commit ba82f5b
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,20 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Save dependencies
uses: actions/upload-artifact@v3
with:
name: dependencies
path: vendor/bundle

rubocop:
needs: prepare
runs-on: ubuntu-latest
steps:
- name: Download dependencies
uses: actions/download-artifact@v3
with:
name: dependencies
- name: Run cops
run: bundle exec rubocop

specs:
needs: prepare
runs-on: ubuntu-latest
steps:
with:
- name: Download dependencies
uses: actions/download-artifact@v3
with:
name: dependencies
- name: Run specs
run: bundle exec rspec

0 comments on commit ba82f5b

Please sign in to comment.