X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/dd0b486c0e22748bbf7fcb7c87252cb3c512a934..HEAD:/.github/workflows/cookstyle.yml diff --git a/.github/workflows/cookstyle.yml b/.github/workflows/cookstyle.yml index 98f880f36..b9332e236 100644 --- a/.github/workflows/cookstyle.yml +++ b/.github/workflows/cookstyle.yml @@ -1,27 +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.1.2 - - name: Cache gems - uses: actions/cache@v2.1.4 + 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