Feat/move to poetry #98
Workflow file for this run
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: build-tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
pylint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
- name: Run pylint | |
run: | | |
poetry run pylint --disable=I --disable=W --disable=C --disable=R p5 | |
pytest: | |
needs : pylint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install poetry | |
poetry install | |
sudo apt-get install python3-opengl libglfw3 -y | |
- name: Run Tests | |
run: | | |
poetry run pytest -svv p5 | |
sanity-tests: | |
needs : pytest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11'] | |
runs-on: ${{ matrix.os }} | |
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 install python3-opengl libglfw3 python3-wheel -y | |
python -m pip install --upgrade pip | |
pip install wheel | |
pip install . | |
sudo apt-get install x11-utils | |
- name: Run headless tests | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: python p5/visualTests/sanity_testing.py |