X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/c0cf401614e37e85249407142d473d7be59a4310..06de4653845b4a47851fb30fe61cca314ac6af6f:/.github/workflows/cookstyle.yml?ds=sidebyside diff --git a/.github/workflows/cookstyle.yml b/.github/workflows/cookstyle.yml index a181f72f1..b9332e236 100644 --- a/.github/workflows/cookstyle.yml +++ b/.github/workflows/cookstyle.yml @@ -1,26 +1,24 @@ name: Cookstyle + on: - push - pull_request + - workflow_dispatch + +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@v4 - 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