Skip to content

Commit 6359504

Browse files
committed
Maybe GHA doesn't actually run apt-get update before runs...
1 parent 3f51dc5 commit 6359504

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,9 @@ jobs:
162162
- name: Ensure we have new enough versions to respect python_version
163163
run: python -m pip install -U pip setuptools
164164
- name: Install dependencies
165-
run: sudo apt-get install -y libenchant-dev libxml2-dev libxslt-dev
165+
run: >
166+
sudo apt-get update
167+
sudo apt-get install -y libenchant-dev libxml2-dev libxslt-dev
166168
if: runner.os == 'Linux' && startsWith(matrix.python-version.toxenv, 'docs-')
167169
- name: Install dependencies
168170
run: brew install enchant

0 commit comments

Comments
 (0)