Skip to content

chore(ruby): add new linting check workflow for ruby wrapper #1

chore(ruby): add new linting check workflow for ruby wrapper

chore(ruby): add new linting check workflow for ruby wrapper #1

# .github/workflows/lint.yml
name: RuboCop Linter
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version-file: '.ruby-version'
bundler-cache: true
- name: Run RuboCop
<<<<<<< HEAD

Check failure on line 27 in .github/workflows/ruby-wrapper-lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ruby-wrapper-lint.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
run: bundle exec rubocop
=======
run: bundle exec rubocop
>>>>>>> b0f1c7e (chore(ruby): add new linting check workflow for ruby wrapper)