test: improved test coverage #16
Workflow file for this run
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: "CodeQL" | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| path-ignore: | |
| - '**/*.md' | |
| schedule: | |
| - cron: '39 19 * * 5' | |
| jobs: | |
| analyze: | |
| name: Analyze. | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 360 | |
| permissions: | |
| contents: read | |
| security-events: write | |
| # actions: read # <- is needed only for private repositories | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: ['go','actions'] | |
| steps: | |
| - | |
| name: Checkout repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - | |
| # Initializes the CodeQL tools for scanning. | |
| name: Initialize CodeQL | |
| uses: github/codeql-action/init@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - | |
| name: Analyze ${{ matrix.language }} | |
| uses: github/codeql-action/analyze@014f16e7ab1402f30e7c3329d33797e7948572db # v4.31.3 |