This commit is contained in:
2024-05-04 17:03:07 +02:00
parent d535a987d9
commit 1a2c4f7167
67 changed files with 64 additions and 571 deletions

View File

@ -1,37 +0,0 @@
name: Build
on:
- push
- pull_request
# schedule:
# - cron: '0 21 * * 0'
jobs:
build:
runs-on: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U -r requirements.txt
- name: Build and deploy
run: |
pip install mkdocs-material==7.1.9
mkdocs build
cp -r site/ $GITHUB_WORKSPACE/site
chmod -R 777 $GITHUB_WORKSPACE/site
- name: Upload built site
uses: actions/upload-artifact@v2
with:
name: built-site
path: $GITHUB_WORKSPACE/site

View File

@ -1,15 +0,0 @@
name: lint
on:
- push
- pull_request
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install markdownlint-cli
run: npm install -g markdownlint-cli
- name: lint
run: markdownlint '**/*.md'