Skip to content

Commit

Permalink
Remove redundant bundle install CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
mbj committed Jan 16, 2021
1 parent ed132f1 commit 52b48b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rspec spec/unit
ruby-integration-spec:
name: Integration Specs
Expand All @@ -39,8 +39,8 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rspec spec/integration
ruby-rubocop:
name: Rubocop
Expand All @@ -55,6 +55,6 @@ jobs:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rubocop
4 changes: 2 additions & 2 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ AllCops:
- 'Gemfile'
- 'Gemfile.triage'
Exclude:
- lib/unparser/precedence/data.rb
- tmp
- tmp/**/*
- vendor/**/*
NewCops: enable

# Avoid parameter lists longer than five parameters.
Expand Down

0 comments on commit 52b48b1

Please sign in to comment.