Skip to content

Commit

Permalink
Merge pull request #75 from artichoke/lopopolo/add-missing-ruby-ci-job
Browse files Browse the repository at this point in the history
Add missing Ruby lint and format job in CI workflow
  • Loading branch information
lopopolo authored Sep 5, 2022
2 parents 5a50e6f + c328e40 commit c965c11
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,22 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features --all-targets

ruby:
name: Lint and format Ruby
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Ruby toolchain
uses: ruby/setup-ruby@v1
with:
ruby-version: ".ruby-version"
bundler-cache: true

- name: Lint and check formatting with Rubocop
run: bundle exec rubocop --format github

text:
name: Lint and format text
runs-on: ubuntu-latest
Expand Down

0 comments on commit c965c11

Please # to comment.