diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-01-25 02:35:12 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-01-25 02:35:12 +0300 |
commit | cdf97ce0b5639c0361803f45314224b8069781dc (patch) | |
tree | 18c55d2e819d826a7c8d58736f2cd7f92fc9a64d | |
parent | app.py: don't do systemctl --user if no user instance (diff) | |
download | linux-status-cdf97ce0b5639c0361803f45314224b8069781dc.tar.gz linux-status-cdf97ce0b5639c0361803f45314224b8069781dc.zip |
workflows/ci: run tests as root alsov1.2
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0e1d49..2fd7af1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,5 +19,7 @@ jobs: uses: actions/setup-python@v2 with: python-version: '${{ matrix.python-version }}' + - name: Run tests as root + run: sudo ./test/test.sh - name: Run tests run: ./test/test.sh |