24 lines
No EOL
602 B
YAML
24 lines
No EOL
602 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: bookworm
|
|
container: minidocks/mkdocs
|
|
steps:
|
|
- name: Add NodeJs & Git
|
|
run: |
|
|
uname -a
|
|
apk add nodejs npm git
|
|
- name: Checkout repository with git
|
|
run: |
|
|
git clone --depth 1 https://git.numenaute.org/YannK/Actions_tests.git
|
|
# uses: actions/checkout@v4
|
|
# with:
|
|
# github-server-url: https://git.numenaute.org/
|
|
- name: Show content
|
|
run: |
|
|
pwd
|
|
ls -al
|
|
- name: Compile mkdocs
|
|
run: |
|
|
cd Actions_tests
|
|
mkdocs build |