diff options
-rw-r--r-- | .github/workflows/linux.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index e41ae95..843ef06 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -79,6 +79,17 @@ jobs: set -x make -C build -j$(nproc) VERBOSE=1 + - name: 'Test as non-root' + run: |- + set -x + whoami + make check + + - name: 'Test as root' + run: |- + set -x + sudo make check + - name: 'Install' run: |- set -x -o pipefail |