Skip to content

Merge pull request #842 from ScrapeGraphAI/temp #1518

Merge pull request #842 from ScrapeGraphAI/temp

Merge pull request #842 from ScrapeGraphAI/temp #1518

Workflow file for this run

on:
push:
paths:
- 'scrapegraphai/**'
- '.github/workflows/pylint.yml'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install dependencies
run: uv sync --frozen
- name: Analysing the code with pylint
run: uv run poe pylint-ci
- name: Check Pylint score
run: |
pylint_score=$(uv run poe pylint-score-ci | grep 'Raw metrics' | awk '{print $4}')
if (( $(echo "$pylint_score < 8" | bc -l) )); then
echo "Pylint score is below 8. Blocking commit."
exit 1
else
echo "Pylint score is acceptable."
fi