Submission: Fullstack Developer Challenge - Daniel da Silva #10
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 scanning - action" | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '0 7 * * 0' | |
| jobs: | |
| CodeQL-Build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| security-events: write | |
| contents: read | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| # Autodetects languages present in the repo (Ruby, JavaScript). No Autobuild | |
| # step: that's only needed for compiled languages (C/C++, C#, Java), and this | |
| # is a Ruby/Rails app with no compilation step. | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v3 | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v3 |