From 68dcfb1e49e2a4da6d1ca464e1c4085bd5e2016c Mon Sep 17 00:00:00 2001 From: hrj Date: Tue, 13 Apr 2021 07:55:45 +0530 Subject: [PATCH] CI: fix permission error Signed-off-by: hrj --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index edceef0..e3f7aa3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,4 +21,4 @@ jobs: - name: Run linter run: sbt "scalafixAll --check" - name: Run locust tests - run: apt-get update && apt-get -y upgrade && apt-get install -y gocr && ./tests/run.sh + run: sudo apt-get install -y gocr && ./tests/run.sh