Skip to content

Commit 060442b

Browse files
Consolidate dependency installation in workflow
1 parent ac604fe commit 060442b

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ jobs:
1919
- name: Install GCC
2020
run: sudo apt-get install build-essential -y
2121

22-
- name: Install CURl
23-
run: pkg install clang curl
22+
- name: Install dependencies
23+
run: |
24+
sudo apt-get update
25+
sudo apt-get install -y clang curl
26+
2427
2528
2629

0 commit comments

Comments
 (0)