Skip to content

[DMS-803] Add filtered read test suite #269

[DMS-803] Add filtered read test suite

[DMS-803] Add filtered read test suite #269

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Licensed to the Ed-Fi Alliance under one or more agreements.
# The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0.
# See the LICENSE and NOTICES files in the project root for more information.
name: CodeQL Security Scan
on:
pull_request:
branches:
- main
paths:
- 'src/**'
push:
branches:
- main
permissions: read-all
jobs:
analyze:
name: Analyze Code
runs-on: ubuntu-latest
env:
SRC_DIR: src/edfi-paging-test
permissions:
security-events: write
strategy:
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install Poetry
run: pipx install poetry
- name: Install Python 3.9
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3
with:
python-version: "3.9.x"
cache: "poetry"
- name: Install dependencies
run: poetry env use "3.9" && poetry install
working-directory: ${{ env.SRC_DIR }}
- name: Initialize CodeQL
uses: github/codeql-action/init@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13
with:
languages: "python"
setup-python-dependencies: false
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@1b549b9259bda1cb5ddde3b41741a82a2d15a841 # v3.28.13