diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-05-27 10:06:45 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2022-05-27 11:55:03 +0200 |
commit | 52edea0feccf98700300e98567c5a2ada7604c89 (patch) | |
tree | e09d89d3126aa910eb949331cfe244d3a5e02dba /.github | |
parent | 6a5acd753abbd899547c89b369de71df639cce19 (diff) | |
download | hugo-52edea0feccf98700300e98567c5a2ada7604c89.tar.gz hugo-52edea0feccf98700300e98567c5a2ada7604c89.zip |
github: Set HUGO_BUILD_TAGS: extended when running tests
Also fix TestDecodeConfig/Basic which started to fail in the extended build in 0.99.1.
Closes #9935
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 700c68882..1403c4d57 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -72,10 +72,11 @@ jobs: echo "6ae442129dbb3334bc21ef851261da6c0c1b560da790ca2e1350871d00ab816d sass_embedded-1.0.0-beta.6-windows-x64.zip" | sha256sum -c; unzip sass_embedded-1.0.0-beta.6-windows-x64.zip; echo "$env:GITHUB_WORKSPACE/sass_embedded/" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf-8 -Append - - name: Test + - name: Check run: | - mage -v test mage -v check; + env: + HUGO_BUILD_TAGS: extended - name: Build Docs env: HUGO_BUILD_TAGS: extended |