Skip to content

testing configurations #2

testing configurations

testing configurations #2

Workflow file for this run

# .github/workflows/python-tests.yml
name: LaCE automated testing
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10' # Specify the Python version as per your requirements
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Run tests
run: |
pytest tests/test_lace.py