mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
21 lines
406 B
YAML
21 lines
406 B
YAML
name: Linters
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
rubocop:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
OSEM_RUBY_VERSION: 2.5.8
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 2.5
|
|
bundler-cache: true
|
|
- run: bundle exec rubocop
|
|
- run: bundle exec haml-lint app/views
|