X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/51b9addca796d2b33f478ab8a810e88194f6b8d1..2bfb0ef07fb64314f5c4ded641a8c280df9c1d0b:/.github/workflows/cookstyle.yml diff --git a/.github/workflows/cookstyle.yml b/.github/workflows/cookstyle.yml index 91471ac1b..62d14b8af 100644 --- a/.github/workflows/cookstyle.yml +++ b/.github/workflows/cookstyle.yml @@ -1,27 +1,23 @@ name: Cookstyle + on: - push - pull_request + +concurrency: + group: ${{ github.workflow }}-{{ github.head_ref || github.ref }} + cancel-in-progress: true + jobs: cookstyle: name: Cookstyle runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup ruby - uses: actions/setup-ruby@v1.1.2 - - name: Cache gems - uses: actions/cache@v2 + uses: ruby/setup-ruby@v1 with: - path: vendor/bundle - key: bundle-${{ runner.OS }}-${{ hashFiles('Gemfile.lock') }} - restore-keys: | - bundle-${{ runner.OS }}- - - name: Install gems - run: | - gem install bundler - bundle config set deployment true - bundle install --jobs 4 --retry 3 + bundler-cache: true - name: Run cookstyle run: bundle exec cookstyle --format fuubar