Skip to content

Add information about the state of Projector #1

Add information about the state of Projector

Add information about the state of Projector #1

Workflow file for this run

name: Test build
on: [push, pull_request]
jobs:
wheel:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install Requirements
run: pip install -r requirements.txt
- name: Remove old dirs
run: rm -rf dist build
- name: Create wheel file
run: python3 setup.py bundle bdist_wheel
src-install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install Requirements
run: pip install -r requirements.txt
- name: Prepare bundled data
run: python3 setup.py bundle
- name: Install projector-installer
run: pip3 install .
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install Requirements
run: |
pip install -r requirements.txt
pip install dataclasses
pip install pytest
- name: Test with pytest
run: pytest test/