Skip to content

Create verification.yml #1

Create verification.yml

Create verification.yml #1

Workflow file for this run

name: Python Code Verification
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
verify-python-code:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas
- name: Run verification script
run: python verify_python_code.py