Skip to content

remove _build

remove _build #20

Workflow file for this run

name: CI
on: push
jobs:
build-and-test:
name: Install and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
architecture: x64
- name: Print version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: python -m pip install -r requirements.txt
- name: Install pygl
run: python setup.py install