From d249dcd9ed601c00913cdabf46ca68ebf1bc7f81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20L=C3=BCke?= Date: Tue, 7 Nov 2023 00:21:23 +0100 Subject: [PATCH] ci: run tests as root --- .github/workflows/rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 07e637d..fe7903d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,6 +18,8 @@ jobs: options: --user root steps: - uses: actions/checkout@v3 + - name: install-deps + run: sudo apt install clang -y - name: Build run: cargo build --verbose - name: Run tests