Skip to content

Commit 40b8e32

Browse files
committed
Updated github actions to install dependentt tools.
1 parent 9ca5474 commit 40b8e32

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Install dependencies
15-
run: sudo apt-get install -y make gcc gcov
15+
run: sudo apt-get update && sudo apt-get install -y make gcc gcovr build-essential
1616
- name: Build
1717
run: |
18-
cd C/Checksum
18+
cd Lab1
1919
make all
2020
- name: Run unit tests
2121
run: |

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Install dependencies
14-
run: sudo apt-get install -y make gcc gcov
14+
run: sudo apt-get update && sudo apt-get install -y make gcc build-essential gcovr
1515
- name: Run coverage and capture percentage
1616
id: runcov
1717
run: |

0 commit comments

Comments
 (0)