Skip to content

Add integration tests, test launcher, and validation script for Pytho… #15

Add integration tests, test launcher, and validation script for Pytho…

Add integration tests, test launcher, and validation script for Pytho… #15

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- name: Build
run: echo "Build step (customize as needed)"