Skip to content

Commit

Permalink
Add GH action for linting code
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdeyen committed Apr 27, 2023
1 parent 2f9e756 commit c8c60ca
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,16 @@ jobs:
with:
name: Screenshots
path: spec/dummy/tmp/screenshots

Lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
bundler-cache: true
- name: Lint Ruby files
run: bundle exec standardrb

0 comments on commit c8c60ca

Please sign in to comment.