Skip to content

Add useful resources in docs #6

Add useful resources in docs

Add useful resources in docs #6

Workflow file for this run

name: test_builds
on:
push:
branches: [ 'main' ]
pull_request:
branches: [ 'main' ]
workflow_dispatch:
jobs:
make-tests-matrix:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- id: set-matrix
run: python .github/make-tests-matrix.py >> $GITHUB_OUTPUT
test:
needs: make-tests-matrix
continue-on-error: true
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJSON(needs.make-tests-matrix.outputs.matrix) }}
steps:
- uses: actions/checkout@v3
- name: Set up Python v3.8
id: setup-python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
python -m pip install flake8
- name: flake8 linter
run: flake8 . --exclude blender*,addon/,simulations/,blend/,test.py,.github/,docs/ --max-line-length 90