Skip to content

Removing keepalive from example #325

Removing keepalive from example

Removing keepalive from example #325

Workflow file for this run

name: CI
on:
push:
branches: [ main , 'v*', 'dev*']
pull_request:
branches: [ main , 'v*' ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Install openGL
run: sudo apt install freeglut3-dev
- 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: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Test with pytest
run: |
pytest