Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/test-lp.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Test Learning Path
on: pull_request
env:
HUGO_VERSION: 0.130.0

jobs:
Test-Pull-Request:
runs-on: ubuntu-24.04-arm
Expand All @@ -8,9 +11,13 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ steps.vars.outputs.branch-name }}
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: ${{ env.HUGO_VERSION }}
extended: true
- name: Run hugo command to test site builds
run: |
sudo apt-get install -y hugo
hugo
- name: Get all changed markdown files
id: changed-markdown-files
Expand Down