Skip to content

Update workflow

Update workflow #2

Workflow file for this run

name: "Column2Vec"
on:
schedule:
- cron: '38 10 * * *'
workflow_dispatch:
push:
jobs:
python-tests:
name: Run Python Tests
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'
# - name: Install dependencies
# run: |
# pip install pytest
# pip install -r requirements.txt
- name: Run tests
run: |
echo "Hi"
# pytest test/test_column2Vec.py