Initial commit
Some checks failed
Build / build (push) Waiting to run
continuous-integration/drone/push Build is pending
lint / lint (push) Failing after 16s
Docker Compose Test / test (push) Failing after 4s

This commit is contained in:
Sthope 2024-05-05 21:48:15 +02:00
parent 2323dfae76
commit 2acdc38268
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,37 @@
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

15
.gitea/workflows/lint.yml Normal file
View File

@ -0,0 +1,15 @@
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'