Skip to content

Commit 5554533

Browse files
committed
Return Install build-dependencies to the ubuntu-latest workflow
I moved this code incorrectly in payjoin#989 to a general binding build script but others not using a debian based system immediately ran into problems running this apt based package manager on their machine. It was removed in payjoin#1000 from the binding script but This probably should just be returned to the workflow it was originally.
1 parent 554c4e6 commit 5554533

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ jobs:
3232
with:
3333
python-version: 3.12
3434

35+
- name: "Install build dependencies"
36+
run: |
37+
sudo apt update
38+
sudo apt install -y build-essential python3-dev
39+
3540
- name: "Use cache"
3641
uses: Swatinem/rust-cache@v2
3742

0 commit comments

Comments
 (0)