Merge branch 'main' into updatechecker
Some checks failed
Build Documentation and Lint Code / build and lint (pull_request) Failing after 24s

This commit is contained in:
Seaswimmer 2024-01-07 12:18:43 +00:00
commit 960c97ba44

View file

@ -8,41 +8,17 @@ on:
jobs:
build and lint:
runs-on: docker
container: catthehacker/ubuntu:act-latest
container: coastalcommits.com/seaswimmerthefsh/actionscontainers-seacogs:latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install apt packages
run: |
apt-get update
apt-get install -y \
libcairo2-dev \
libfreetype6-dev \
libffi-dev \
libjpeg-dev \
libpng-dev \
libz-dev \
pngquant
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "12"
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Poetry
run: curl -sSL https://cdn.seaswimmer.cc/go/poetry | python3.11 -
- name: Install dependencies
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry config virtualenvs.create false
poetry install --with docs --with dev --no-root
- name: Build the documentation
run: |
export PATH="$HOME/.local/bin:$PATH"
mkdocs build
continue-on-error: true
- name: Deploy the documentation to Meli (CoastalCommits Pages)
@ -54,11 +30,12 @@ jobs:
unset GITHUB_TOKEN
unset GITLAB_TOKEN
echo "${{ github.ref_name }}"
echo "${{ github.base_ref }}"
if [ -n "${{ github.base_ref }}" ]; then
echo "${{ github.base_ref }}"
release="$(basename "${{ github.base_ref }}")"
else
echo "${{ github.ref_name }}"
release="$(basename "${{ github.ref_name }}")"
fi
@ -77,5 +54,4 @@ jobs:
continue-on-error: true
- name: Analysing the code with Pylint
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint --rcfile .forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
pylint --rcfile .forgejo/workflows/config/.pylintrc $(git ls-files '*.py')