Skip to content

Update cache-pip.yml #43

Update cache-pip.yml

Update cache-pip.yml #43

Workflow file for this run

name: Test Python venv Setup
on:
push:
jobs:
test-venv-install:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
# - name: Create venv and install dependencies
# run: |
# python -m venv venv
# source venv/bin/activate
# pip install --upgrade pip
# pip install -r requirements.txt
- name: Run tests
run: |
source venv/bin/activate
pytest # Adjust this command to your test runner if needed