Skip to content

Commit 149161d

Browse files
committed
Fix Ubuntu CI tests
1 parent db99b5b commit 149161d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ jobs:
124124

125125
- name: Install Ubuntu dependencies
126126
if: matrix.os == 'Ubuntu'
127-
run: sudo apt-get install bzr
127+
run: |
128+
sudo apt-get update
129+
sudo apt-get install bzr
128130
129131
- name: Install MacOS dependencies
130132
if: matrix.os == 'MacOS'
@@ -224,7 +226,9 @@ jobs:
224226
python-version: "3.10"
225227

226228
- name: Install Ubuntu dependencies
227-
run: sudo apt-get install bzr
229+
run: |
230+
sudo apt-get update
231+
sudo apt-get install bzr
228232
229233
- run: pip install nox 'virtualenv<20' 'setuptools != 60.6.0'
230234

0 commit comments

Comments
 (0)