github actions: run apt update

This commit is contained in:
lilydjwg 2021-07-25 19:49:00 +08:00
parent 494c4ddf67
commit ad24b841cf
1 changed files with 3 additions and 1 deletions

View File

@ -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