Skip to content

Fix Code Scanning Bugs #127

Fix Code Scanning Bugs

Fix Code Scanning Bugs #127

Workflow file for this run

name: Build and Test
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
schedule:
- cron: 0 14 * * *
jobs:
container:
uses: advanced-security/reusable-workflows/.github/workflows/container-security.yml@main
secrets: inherit
test-e2e:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pipenv
pipenv install
- name: Run tests
run: |
pipenv run test-e2e