-
Notifications
You must be signed in to change notification settings - Fork 9
49 lines (37 loc) · 1.19 KB
/
python-app.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: "Linux: Blender 3.1"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9.2
uses: actions/setup-python@v2
with:
python-version: 3.9.2
- name: Install Blender
run: |
sudo apt-get update -qq
# sudo apt-get install blender
- name: Install Pip
run: |
python -m pip install --upgrade pip
- name: Download Poetry
run: |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
- name: Prepare env
run: |
source $HOME/.poetry/env
poetry install --no-root
poetry run python utils/download_blender.py
# - name: Download Blender
# run: |
- name: Test with pytest
run: |
python tests.py ../blender-linux/blender