Update pylint.yml #14
This file contains hidden or 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: Run in Custom Docker Image | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Blender | |
run: | | |
sudo apt-get update | |
sudo apt-get install blender | |
- name: Install dependencies | |
run: | | |
python3 -m pip install --upgrade pip | |
blender --version # Check Blender installation | |
python -m pip install --user bpy | |
pip3 install pylint | |
- name: Analysing the code with pylint | |
run: | | |
pylint $(git ls-files '*.py') |