X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/7a73696e72bfd3cdd56dd1562254497732f5a1d9..6ea6b971998fa1e2eff2c737c7de9092613ecc7e:/.github/workflows/cookstyle.yml?ds=inline diff --git a/.github/workflows/cookstyle.yml b/.github/workflows/cookstyle.yml index c82391de1..43494fc14 100644 --- a/.github/workflows/cookstyle.yml +++ b/.github/workflows/cookstyle.yml @@ -1,28 +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@v1 - with: - fetch-depth: 1 + uses: actions/checkout@v3 - name: Setup ruby - uses: actions/setup-ruby@v1 - - name: Cache gems - uses: actions/cache@v1 + 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 --version "~> 1.17" - bundle install --jobs 4 --retry 3 --deployment + bundler-cache: true - name: Run cookstyle run: bundle exec cookstyle --format fuubar