ci: apt-get update before installing libsqlcipher-dev
Some checks failed
CI / test (pull_request) Failing after 1m2s

This commit is contained in:
pyr0ball 2026-03-15 16:37:46 -07:00
parent 5939ae88eb
commit 4a996c2628

View file

@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt-get install -y libsqlcipher-dev
run: sudo apt-get update -q && sudo apt-get install -y libsqlcipher-dev
- name: Set up Python
uses: actions/setup-python@v5