Skip to content

[WIP] Wrapper for simplified z-t conversions #513

[WIP] Wrapper for simplified z-t conversions

[WIP] Wrapper for simplified z-t conversions #513

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "development" ]
pull_request:
branches: [ "development" ]
schedule:
- cron: "27 3 * * 0"
concurrency:
group: ${{ github.ref }}-${{ github.head_ref }}-codeql
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ python ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Packages
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
- name: Build
uses: github/codeql-action/autobuild@v2
if: ${{ matrix.language == 'python' }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"