Merge pull request #657 from bastelfreak/stdlib9 #618
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Static Code Analysis | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
static_code_analysis: | |
name: Run checks | |
env: | |
ruby_version: '2.7' | |
runs-on: 'ubuntu-20.04' | |
steps: | |
- name: Checkout current PR code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install ruby version ${{ env.ruby_version }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ env.ruby_version }} | |
- name: Prepare testing environment with bundler | |
run: | | |
git config --global core.longpaths true | |
bundle config set --local without 'release' | |
bundle update --jobs 4 --retry 3 | |
- name: Run commits check | |
run: bundle exec rake commits | |
- name: Run validate check | |
run: bundle exec rake validate | |
- name: Run lint check | |
run: bundle exec rake lint | |
- name: Run metadata_lint check | |
run: bundle exec rake metadata_lint | |
- name: Run syntax check | |
run: bundle exec rake syntax syntax:hiera syntax:manifests syntax:templates | |
- name: Run rubocop check | |
run: bundle exec rake rubocop |