Skip to content

Commit

Permalink
Merge pull request #682 from mhashizume/maint/main/static-code-workflow
Browse files Browse the repository at this point in the history
(maint) Use reusable static code analysis workflow
  • Loading branch information
joshcooper authored Nov 22, 2023
2 parents bd68744 + 77e340b commit 201f965
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 65 deletions.
42 changes: 2 additions & 40 deletions .github/workflows/static_code_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,46 +6,8 @@ on:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:

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@v4
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
uses: "puppetlabs/phoenix-github-actions/.github/workflows/static_code_analysis.yaml@main"
25 changes: 0 additions & 25 deletions rakelib/commits.rake

This file was deleted.

0 comments on commit 201f965

Please sign in to comment.