Skip to content

Bump actions/setup-python from 4 to 5 #3

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #3

Workflow file for this run

name: test_workflow
on:
pull_request:
push:
branches:
'**'
jobs:
sast:
uses: SmartDCSITlimited/actions-store/.github/workflows/SAST.yml@main

Check failure on line 10 in .github/workflows/test_workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_workflow.yml

Invalid workflow file

error parsing called workflow ".github/workflows/test_workflow.yml" -> "SmartDCSITlimited/actions-store/.github/workflows/SAST.yml@main" : workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
secret-detection:
uses: SmartDCSITlimited/actions-store/.github/workflows/SecretDetection.yml@main
python-linting:
uses: SmartDCSITlimited/actions-store/.github/workflows/PythonLinting.yml@main
run-tests:
runs-on: ubuntu-latest
steps:
- name: Setup Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install Requirements
run: |
pip install --upgrade pip
pip install pytest
pytest --version
pip install -r requirements.txt
- name: Run Tests
run: |
export PYTHONPATH=/workspaces/test-event-generator:$PYTHONPATH
pytest