Skip to content

Merge pull request #4 from dvandersluis/v1.0 #15

Merge pull request #4 from dvandersluis/v1.0

Merge pull request #4 from dvandersluis/v1.0 #15

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby
name: Lint
on:
push:
branches: [ "master", "v1.0" ]
pull_request:
branches: [ "master", "v1.0" ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
rubocop:
name: Run Rubocop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ruby # Latest stable CRuby version
bundler-cache: true
- name: rubocop
run: bundle exec rubocop