Add information about the state of Projector #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |