File tree Expand file tree Collapse file tree 5 files changed +90
-7
lines changed Expand file tree Collapse file tree 5 files changed +90
-7
lines changed Original file line number Diff line number Diff line change 88 build :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v3
11+ - uses : actions/checkout@v4
1212 - name : Install uv
1313 uses : astral-sh/setup-uv@v3
1414 - name : Install dependencies
15- run : uv sync --frozen
15+ run : |
16+ cd scrapegraph-py
17+ uv sync --frozen
1618 - name : Analysing the code with pylint
17- run : uv run poe pylint-ci
19+ run : |
20+ cd scrapegraph-py
21+ uv run poe pylint-ci
1822 - name : Check Pylint score
1923 run : |
2024 cd scrapegraph-py
Original file line number Diff line number Diff line change 1313 runs-on : ubuntu-latest
1414
1515 steps :
16- - uses : actions/checkout@v3
16+ - uses : actions/checkout@v4
1717 - name : Set up Python
1818 uses : actions/setup-python@v5
1919 with :
Original file line number Diff line number Diff line change 3333 id : build_cache
3434 if : success()
3535 - name : Cache build
36- uses : actions/cache@v2
36+ uses : actions/cache@v4
3737 with :
3838 path : scrapegraph-py/dist
3939 key : ${{ runner.os }}-build-${{ hashFiles('scrapegraph-py/dist/**') }}
6767 cd ./scrapegraph-py
6868 uv sync
6969 - name : Restore build artifacts
70- uses : actions/cache@v2
70+ uses : actions/cache@v4
7171 with :
7272 path : ./scrapegraph-py/dist
7373 key : ${{ runner.os }}-build-${{ hashFiles('./scrapegraph-py/dist/**') }}
Original file line number Diff line number Diff line change @@ -55,4 +55,5 @@ dev-dependencies = [
5555 " pytest==8.0.0" ,
5656 " pytest-mock==3.14.0" ,
5757 " pylint>=3.2.5" ,
58+ " poethepoet>=0.31.1" ,
5859]
You can’t perform that action at this time.
0 commit comments