Skip to content

Fix for No Surface detected index error #58

Fix for No Surface detected index error

Fix for No Surface detected index error #58

Workflow file for this run

name: Study lyte testing
# Controls when the action will run.
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
testing:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
python -m pip install pytest
python setup.py install
- name: test
run: |
pytest tests