SeaCogs/.forgejo/workflows/workflow.yaml

71 lines
2.2 KiB
YAML

name: Build Documentation and Lint Code
on:
push:
branches:
- 'main'
pull_request:
jobs:
build and lint:
runs-on: docker
container: catthehacker/ubuntu:act-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)
run: |
if [ -n "${{ github.base_ref }}" ]; then
release="$(basename "{{ github.base_ref }}")"
export GITEA_TOKEN="${{ secrets.COASTALCOMMITSTOKEN }}"
else
release="$(basename "${{ github.ref }}")"
fi
echo "Deploying to Meli on branch $release"
npx -p "@getmeli/cli" meli upload ./site \
--url "https://pages.coastalcommits.com" \
--site "${{ vars.MELI_SITE_ID }}" \
--token "${{ secrets.MELI_SITE_SECRET }}" \
--release "$release/$(git rev-parse HEAD)" \
--branch "$release"
echo "Deployed to Meli on branch $release"
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')