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