mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 09:46:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			280 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			280 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: PHP Linting
 | 
						|
on:
 | 
						|
  pull_request:
 | 
						|
    branches: [main]
 | 
						|
  push:
 | 
						|
    branches: [main]
 | 
						|
 | 
						|
jobs:
 | 
						|
  phplint:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v3
 | 
						|
      - uses: overtrue/phplint@8.2
 | 
						|
        with:
 | 
						|
          path: .
 | 
						|
          options: --exclude=*.log
 |