Skip to content

Merge pull request #95 from ftorradeflot/automated_testing #11

Merge pull request #95 from ftorradeflot/automated_testing

Merge pull request #95 from ftorradeflot/automated_testing #11

Workflow file for this run

# .github/workflows/python-tests.yml
name: LaCE automated testing
on:
push:
branches: '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
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: |
pip install pytest
pytest tests/test_lace.py