summaryrefslogtreecommitdiff
path: root/.github/workflows/lint.yml
blob: 7462be46f399939eb5460ad41cb0838c90aae605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
name: lint

"on":
  pull_request:
  push:
    branches:
      - master

jobs:
  chefstyle:
    runs-on: ubuntu-latest
    env:
      BUNDLE_WITHOUT: ruby_shadow:ruby_prof:omnibus_package
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: 2.7
        bundler-cache: true
    - run: bundle exec rake style