updating README, correcting the url pointing to 'master' branch #3
This file contains 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: "Turquoise Space - JBehave Junit Runner - CodeQL Cron" | |
on: | |
push: | |
branches: [ "master", "TurquoiseSpace" ] | |
pull_request: | |
branches: [ "master", "TurquoiseSpace" ] | |
schedule: | |
# Pattern for Cron is [Minute] [Hour] [Day of Month] [Month] [Day of Week (where 0 is Sunday)] | |
# Everyday at midnight | |
- cron: "0 0 * * *" | |
# At 23:12 on every Thursday | |
#- cron: "12 23 * * 4" | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ java ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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 | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
with: | |
category: "/language:${{ matrix.language }}" |