Skip to content

Commit

Permalink
chore: Use single workflow for future integration of releases
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraichen committed Nov 27, 2023
1 parent 2001bb1 commit 1fe1b26
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/lint.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,23 @@ jobs:
env:
AMQP_SERVER: amqp://localhost:${{ job.services.rabbitmq.ports[5672] }}
run: bundle exec rspec --color ${{ matrix.spec }}

rubocop:
name: rubocop
runs-on: ubuntu-22.04

env:
BUNDLE_WITHOUT: development test

steps:
- uses: actions/checkout@master
- uses: ruby/setup-ruby@v1
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
with:
ruby-version: 3.1
bundler-cache: true

- name: Run rubocop
run: bundle exec rubocop --parallel --color

0 comments on commit 1fe1b26

Please sign in to comment.