mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 02:12:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Shellcheck
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - main
 | 
						|
  pull_request:
 | 
						|
  workflow_dispatch:
 | 
						|
  schedule:
 | 
						|
    - cron: "5 1 * * *"
 | 
						|
 | 
						|
jobs:
 | 
						|
  shellcheck:
 | 
						|
    name: Shellcheck
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v4
 | 
						|
 | 
						|
    - name: Get changed files
 | 
						|
      id: changed-files
 | 
						|
      uses: tj-actions/changed-files@v45
 | 
						|
      with:
 | 
						|
        files: |
 | 
						|
          **.sh
 | 
						|
 | 
						|
    - name: Download ShellCheck
 | 
						|
      shell: bash
 | 
						|
      env:
 | 
						|
        INPUT_VERSION: "v0.10.0"
 | 
						|
      run: |
 | 
						|
        set -euo pipefail
 | 
						|
        if [[ "${{ runner.os }}" == "macOS" ]]; then
 | 
						|
          osvariant="darwin"
 | 
						|
        else
 | 
						|
          osvariant="linux"
 | 
						|
        fi
 | 
						|
 | 
						|
        baseurl="https://github.com/koalaman/shellcheck/releases/download"
 | 
						|
        curl -Lso "${{ github.workspace }}/sc.tar.xz" \
 | 
						|
          "${baseurl}/${INPUT_VERSION}/shellcheck-${INPUT_VERSION}.${osvariant}.x86_64.tar.xz"
 | 
						|
 | 
						|
        tar -xf "${{ github.workspace }}/sc.tar.xz" -C "${{ github.workspace }}"
 | 
						|
        mv "${{ github.workspace }}/shellcheck-${INPUT_VERSION}/shellcheck" \
 | 
						|
          "${{ github.workspace }}/shellcheck"
 | 
						|
 | 
						|
    - name: Verify ShellCheck binary
 | 
						|
      run: |
 | 
						|
        ls -l "${{ github.workspace }}/shellcheck"
 | 
						|
 | 
						|
    - name: Display ShellCheck version
 | 
						|
      run: |
 | 
						|
        "${{ github.workspace }}/shellcheck" --version
 | 
						|
 | 
						|
    - name: Run ShellCheck
 | 
						|
      if: steps.changed-files.outputs.any_changed == 'true'
 | 
						|
      env:
 | 
						|
        ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
 | 
						|
      run: |
 | 
						|
        echo "${ALL_CHANGED_FILES}" | xargs "${{ github.workspace }}/shellcheck"
 |