fix(workflow): update for new docker image

This commit is contained in:
Seaswimmer 2024-03-07 21:33:12 -05:00
parent 56522e51ad
commit 03c14a0311
Signed by untrusted user: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -17,11 +17,11 @@ jobs:
run: poetry install --with dev --no-root
- name: Analysing code with Ruff
run: ruff check $(git ls-files '*.py')
run: ./.venv/bin/ruff check $(git ls-files '*.py')
continue-on-error: true
- name: Analysing code with Pylint
run: pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
run: ./.venv/bin/pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
Build Documentation (MkDocs):
runs-on: docker
@ -42,7 +42,7 @@ jobs:
run: |
export SITE_URL="https://$CI_ACTION_REF_NAME_SLUG.seacogs.coastalcommits.com"
export EDIT_URI="src/branch/$CI_ACTION_REF_NAME/.docs"
mkdocs build -v
./.venv/bin/mkdocs build -v
- name: Deploy documentation
run: |