Skip to content

Update dependency python to 3.13 #85

Update dependency python to 3.13

Update dependency python to 3.13 #85

Workflow file for this run

name: Python Build on macOS
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13' # You can specify e.g., '3.11' if needed
- name: Install dependencies
run: |
python3 -m venv venv
source venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
shell: bash # Ensure bash shell for source to work
- name: Run Python Script
run: |
source venv/bin/activate
echo "Software Engineer skilled in Python, Java, and C++" | python3 main.py
shell: bash