SeaCogs/.forgejo/workflows/workflow.yaml

76 lines
2.2 KiB
YAML
Raw Normal View History

name: Actions
2024-01-06 13:36:54 -05:00
on:
push:
pull_request:
jobs:
2024-10-10 16:03:50 -04:00
lint:
name: Lint Code (Ruff & Pylint)
runs-on: docker
2024-10-10 16:03:50 -04:00
container: www.coastalcommits.com/cswimr/actions:uv
steps:
- name: Checkout
uses: actions/checkout@v3
2024-10-10 16:03:50 -04:00
- name: Install python
run: uv python install 3.11
- name: Install dependencies
2024-10-10 16:03:50 -04:00
run: uv sync
- name: Analysing code with Ruff
2024-10-10 16:03:50 -04:00
run: uv run ruff check $(git ls-files '*.py')
continue-on-error: true
2024-02-28 10:52:22 -05:00
- name: Analysing code with Pylint
2024-10-10 16:03:50 -04:00
run: uv run pylint --rcfile=.forgejo/workflows/config/.pylintrc $(git ls-files '*.py')
2024-02-28 10:52:22 -05:00
2024-10-10 16:03:50 -04:00
docs:
name: Build Documentation (MkDocs)
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: docker
2024-10-10 16:03:50 -04:00
container: www.coastalcommits.com/cswimr/actions:docs
steps:
- name: Checkout
uses: actions/checkout@v3
2024-01-06 11:07:26 -05:00
with:
fetch-depth: 0
2024-01-07 07:36:14 -05:00
2024-10-10 16:03:50 -04:00
- name: Install python
run: uv python install 3.11
- name: Install dependencies
2024-10-10 16:03:50 -04:00
run: uv sync --no-dev --extra=documentation
2024-01-07 07:36:14 -05:00
- name: Set environment variables
uses: actions/env@v2
- name: Build documentation
run: |
export SITE_URL="https://$CI_ACTION_REF_NAME_SLUG.seacogs.coastalcommits.com"
export EDIT_URI="src/branch/$CI_ACTION_REF_NAME/.docs"
2024-10-10 16:03:50 -04:00
uv run mkdocs build -v
- name: Deploy documentation
run: |
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
2024-01-06 21:25:18 -05:00
unset GITHUB_TOKEN
unset GITLAB_TOKEN
2024-06-11 16:50:15 -04:00
echo "${YELLOW}Deploying to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$CI_ACTION_REF_NAME_SLUG${YELLOW}...\n"
2024-01-06 17:04:36 -05:00
npx -p "@getmeli/cli" meli upload ./site \
--url "https://pages.coastalcommits.com" \
2024-01-06 17:02:30 -05:00
--site "${{ vars.MELI_SITE_ID }}" \
2024-06-11 16:39:04 -04:00
--token "${{ secrets.MELI_SECRET }}" \
--release "$CI_ACTION_REF_NAME_SLUG/${{ env.GITHUB_SHA }}" \
--branch "$CI_ACTION_REF_NAME_SLUG"
2024-01-06 17:04:36 -05:00
2024-06-11 16:50:15 -04:00
echo "\n${YELLOW}Deployed to ${BLUE}Meli ${YELLOW}on branch ${GREEN}$CI_ACTION_REF_NAME_SLUG${YELLOW}!"
echo "${GREEN}https://$CI_ACTION_REF_NAME_SLUG.seacogs.coastalcommits.com/"
2024-01-06 21:25:18 -05:00
env:
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}