File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ #  Lint shell scripts
2+ #  https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions
3+ #  https://github.com/marketplace/actions/shell-linter
4+ name : Lint shell scripts 
5+ on : push 
6+ jobs :
7+   lint_shell :
8+     runs-on : ubuntu-24.04 
9+     steps :
10+       - uses : actions/checkout@v4 
11+ 12+         with :
13+           severity : ' warning' 
14+           exclude-paths : ' LICENSE' 
Original file line number Diff line number Diff line change 1+ #  GitHub Actions workflow for linting the systemd unit files
2+ #  https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions
3+ name : Lint systemd units 
4+ on : [ push ] 
5+ jobs :
6+   lint :
7+     runs-on : ubuntu-24.04 
8+     steps :
9+       - name : Checkout 
10+         uses : actions/checkout@v4 
11+       - name : Install systemdlint 
12+         run : pip install systemdlint==1.* 
13+       - name : Lint systemd units 
14+         run : systemdlint ./config/systemd/* 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments