From ad24b841cf27a552a1df219f4517072d3b3cfad9 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Sun, 25 Jul 2021 19:49:00 +0800 Subject: [PATCH] github actions: run apt update --- .github/workflows/tests.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6c19858..c28853f 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -39,7 +39,9 @@ jobs: ${{ runner.os }}-${{ env.cache-name }}- - name: Install pycurl deps if: ${{ contains(matrix.deps, 'pycurl') }} - run: sudo apt install -y libcurl4-openssl-dev + run: | + sudo apt update + sudo apt install -y libcurl4-openssl-dev - name: Install Python deps run: pip install -U ${{ matrix.deps }} pytest pytest-asyncio pytest-httpbin flaky structlog toml appdirs lxml - name: Decrypt keys