SeaCogs/.forgejo/workflows/workflow.yaml

87 lines
2.8 KiB
YAML
Raw Normal View History

name: Actions
2024-01-06 18:36:54 +00:00
on:
push:
branches:
- main
2024-01-06 18:36:54 +00:00
pull_request:
jobs:
2024-10-10 16:03:50 -04:00
lint:
name: Lint Code (Ruff & Pylint)
runs-on: docker
container: catthehacker/ubuntu:act-latest@sha256:01991645805fd6fff768097e03b3ab6dcc62ddddc9426206bad6068719dbb63f
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: "Setup uv"
uses: actions/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5
with:
version: "latest"
enable-cache: true
prune-cache: false
github-token: ${{ secrets.GITHUBTOKEN }}
- name: "Install dependencies"
run: uv sync
- name: Analysing code with Ruff
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
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)
runs-on: docker
container: catthehacker/ubuntu:act-latest@sha256:01991645805fd6fff768097e03b3ab6dcc62ddddc9426206bad6068719dbb63f
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2024-01-06 16:07:26 +00:00
with:
fetch-depth: 0
2024-01-07 12:36:14 +00:00
- name: "Setup uv"
uses: actions/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5
with:
version: "latest"
enable-cache: true
prune-cache: false
github-token: ${{ secrets.GITHUBTOKEN }}
2024-10-10 16:03:50 -04:00
- name: Install dependencies
run: uv sync --no-dev --group=documentation
2024-01-07 12:36:14 +00:00
- name: Set environment variables
uses: actions/env@1791216cd180e6578dd1d67fb8d2852b883a5f53 # 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"
uv run mkdocs build -v
- name: Deploy documentation
run: |
GREEN='\033[0;32m'
YELLOW='\033[0;33m'
BLUE='\033[0;34m'
2024-01-07 02:25:18 +00: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 22:04:36 +00:00
npx -p "@getmeli/cli" meli upload ./site \
2025-03-19 08:05:09 -04:00
--url "https://meli.csw.im" \
2024-01-06 22:02:30 +00:00
--site "${{ vars.MELI_SITE_ID }}" \
--token "${{ secrets.MELI_TOKEN }}" \
--release "$CI_ACTION_REF_NAME_SLUG/${{ env.GITHUB_SHA }}" \
--branch "$CI_ACTION_REF_NAME_SLUG"
2024-01-06 22:04:36 +00: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}!"
2025-03-28 10:25:01 -05:00
echo "${GREEN}https://$CI_ACTION_REF_NAME_SLUG.seacogs.csw.im/"
2024-01-07 02:25:18 +00:00
env:
GITEA_TOKEN: ${{ secrets.COASTALCOMMITSTOKEN }}