mirror of https://github.com/trapexit/mergerfs.git
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							42 lines
						
					
					
						
							916 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							42 lines
						
					
					
						
							916 B
						
					
					
				| name: "CodeQL" | |
|  | |
| on: | |
|   push: | |
|     branches: [ "master" ] | |
|   pull_request: | |
|     branches: [ "master" ] | |
|   schedule: | |
|     - cron: "7 3 * * 6" | |
|  | |
| jobs: | |
|   analyze: | |
|     name: Analyze | |
|     runs-on: ubuntu-latest | |
|     permissions: | |
|       actions: read | |
|       contents: read | |
|       security-events: write | |
|  | |
|     strategy: | |
|       fail-fast: false | |
|       matrix: | |
|         language: [ python, cpp ] | |
|  | |
|     steps: | |
|       - name: Checkout | |
|         uses: actions/checkout@v3 | |
|  | |
|       - name: Initialize CodeQL | |
|         uses: github/codeql-action/init@v2 | |
|         with: | |
|           languages: ${{ matrix.language }} | |
|           queries: +security-and-quality | |
|  | |
|       - name: Autobuild | |
|         uses: github/codeql-action/autobuild@v2 | |
|         if: ${{ matrix.language == 'python' || matrix.language == 'cpp' }} | |
|  | |
|       - name: Perform CodeQL Analysis | |
|         uses: github/codeql-action/analyze@v2 | |
|         with: | |
|           category: "/language:${{ matrix.language }}"
 |