File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 8080
8181 [Link to failing run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
8282
83- PINNED : false
83+ PINNED : false
Original file line number Diff line number Diff line change @@ -44,12 +44,14 @@ jobs:
4444 with :
4545 python-version : " 3.12"
4646
47+ # Here we want to install the current package in editable mode,
48+ # in case mkdocs needs the package (i.e. we are building a mkdocs plugin).
4749 - name : Install dependencies
4850 run : |
4951 python -m pip install --upgrade pip
5052 python -m pip install poetry
5153 poetry config virtualenvs.create false
52- poetry install --no-root -- with dev
54+ poetry install --with dev
5355
5456 - name : Configure Git user
5557 run : |
Original file line number Diff line number Diff line change 1616 poetry run mkdocs serve
1717
1818fix :
19- poetry run ruff . --fix
19+ poetry run ruff check . --fix
2020 poetry run ruff format .
2121
2222check : poetry-export
Original file line number Diff line number Diff line change @@ -37,4 +37,4 @@ commands =
3737
3838[testenv:lint]
3939commands =
40- ruff .
40+ ruff check .
You can’t perform that action at this time.
0 commit comments