Merge pull request #258 from stfc/bugfix-actions #2424
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: Pylint | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint | |
pip install -r requirements.txt | |
# Ensure the modules we rely on are in the Python path | |
git clone --depth=1 https://github.com/StackStorm/st2.git /tmp/st2 | |
echo "PYTHONPATH=/tmp/st2/st2common;/tmp/st2/st2tests" >> $GITHUB_ENV | |
- name: Analysing the code with pylint | |
run: | | |
pylint $(git ls-files '*.py') |