forked from cswimr/SeaCogs
Merge branch 'main' into updatechecker
This commit is contained in:
commit
960c97ba44
1 changed files with 5 additions and 29 deletions
|
@ -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
|
||||
|
||||
if [ -n "${{ github.base_ref }}" ]; then
|
||||
echo "${{ github.ref_name }}"
|
||||
echo "${{ github.base_ref }}"
|
||||
|
||||
if [ -n "${{ github.base_ref }}" ]; then
|
||||
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')
|
||||
|
|
Loading…
Reference in a new issue