Update pylint.yml #19
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 | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Blender 4.4 | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y wget | |
wget https://download.blender.org/release/Blender4.4/blender-4.4.0-linux-x64.tar.xz | |
tar -xf blender-4.4.0-linux-x64.tar.xz | |
sudo mv blender-4.4.0-linux-x64 /usr/local/blender | |
sudo ln -s /usr/local/blender/blender /usr/bin/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') |