From b90a79bf5da6451790bd29337985d4272263405f Mon Sep 17 00:00:00 2001 From: francis Date: Fri, 5 Apr 2024 20:20:29 +0200 Subject: [PATCH] chore: run test action as sudo --- .github/workflows/tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index ba22484f..bedbefcc 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -1,4 +1,4 @@ -name: backend-tests +name: tests on: push: @@ -13,4 +13,4 @@ jobs: steps: - uses: actions/checkout@v4 - name: Run tests - run: ./test.sh + run: echo {{ secrets.SUDO }} | sudo -S ./test.sh