From 99f99b6253f25098e6e9e80a069371d4c4c62612 Mon Sep 17 00:00:00 2001 From: Rob Aleck Date: Tue, 9 Jul 2024 15:25:45 +0000 Subject: [PATCH] chore: Update GitHub Actions workflow to install OS dependencies for snok/install-poetry --- .github/workflows/run_pytest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run_pytest.yml b/.github/workflows/run_pytest.yml index 54b6c4a..f6421b3 100644 --- a/.github/workflows/run_pytest.yml +++ b/.github/workflows/run_pytest.yml @@ -21,10 +21,10 @@ jobs: uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5 with: python-version: ${{ matrix.python-version }} - # - name: Install OS dependencies - # run: | - # DEBIAN_FRONTEND=noninteractive apt update - # DEBIAN_FRONTEND=noninteractive apt install curl sqlite3 -y + - name: Install OS dependencies for snok/install-poetry + run: | + DEBIAN_FRONTEND=noninteractive apt update + DEBIAN_FRONTEND=noninteractive apt install curl sqlite3 -y - uses: snok/install-poetry@93ada01c735cc8a383ce0ce2ae205a21c415379b # v1 with: version: 1.8.3 # pin the version as they keep changing their APIs