X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/204405570f4bf5e8a2b0400d000fc364e5e56f74..80ddac5b86d3fbdc7b825e73dffd4ece48d9a632:/.github/workflows/cookstyle.yml diff --git a/.github/workflows/cookstyle.yml b/.github/workflows/cookstyle.yml index f77ac78ce..5a5139bb2 100644 --- a/.github/workflows/cookstyle.yml +++ b/.github/workflows/cookstyle.yml @@ -1,4 +1,4 @@ -name: Coookstyle +name: Cookstyle on: - push - pull_request @@ -8,13 +8,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v1 - with: - fetch-depth: 1 + uses: actions/checkout@v2.3.4 - name: Setup ruby - uses: actions/setup-ruby@v1 + uses: actions/setup-ruby@v1.1.3 - name: Cache gems - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 with: path: vendor/bundle key: bundle-${{ runner.OS }}-${{ hashFiles('Gemfile.lock') }} @@ -22,7 +20,8 @@ jobs: bundle-${{ runner.OS }}- - name: Install gems run: | - gem install bundler --version "~> 1.17" - bundle install --jobs 4 --retry 3 --deployment + gem install bundler + bundle config set deployment true + bundle install --jobs 4 --retry 3 - name: Run cookstyle run: bundle exec cookstyle --format fuubar