- Notifications
You must be signed in to change notification settings - Fork689
Testcoverage of FOREIGN KEY REFERENCES to close #2356 (#2371)#2306
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
| name:'Code quality' | |
| on: | |
| push: | |
| branches:['develop'] | |
| schedule: | |
| -cron:'32 13 * * 0' | |
| permissions: | |
| contents:read | |
| jobs: | |
| analyze: | |
| name:Analyze | |
| runs-on:${{ (matrix.language == 'swift' && 'macos-latest') || 'blacksmith-4vcpu-ubuntu-2204' }} | |
| timeout-minutes:${{ (matrix.language == 'swift' && 120) || 360 }} | |
| permissions: | |
| actions:read | |
| contents:read | |
| security-events:write | |
| strategy: | |
| fail-fast:false | |
| matrix: | |
| language:['javascript'] | |
| steps: | |
| -name:Harden Runner | |
| uses:step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 | |
| with: | |
| egress-policy:audit | |
| -name:Checkout repository | |
| uses:actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| -name:Initialize CodeQL | |
| uses:github/codeql-action/init@4b675e451b3779918647db783e324bd9fd7f3932 | |
| with: | |
| languages:${{ matrix.language }} | |
| -name:Autobuild | |
| uses:github/codeql-action/autobuild@4b675e451b3779918647db783e324bd9fd7f3932 | |
| -name:Perform CodeQL Analysis | |
| uses:github/codeql-action/analyze@4b675e451b3779918647db783e324bd9fd7f3932 | |
| with: | |
| category:'/language:${{ matrix.language }}' |