From 744281428c615e1abf2b616c9a689e27cbaee94a Mon Sep 17 00:00:00 2001 From: JanSkn Date: Tue, 9 Dec 2025 19:25:00 +0100 Subject: [PATCH] improve installation size --- .github/workflows/tests.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a14dc65..6a525db 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,6 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: ./.github/actions/setup - - run: just install-backend - - run: just test \ No newline at end of file + - name: Install just + run: | + sudo apt-get update -y + sudo apt-get install -y just + shell: bash + - name: Run tests + run: just test \ No newline at end of file