Skip to content

Commit 5754c41

Browse files
committed
ci: install git in the Fedora container
Especially as codecov seems to require it now. Signed-off-by: Adrian Reber <areber@redhat.com>
1 parent 846c64b commit 5754c41

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ jobs:
1212
image: fedora:latest
1313
options: --privileged
1414
steps:
15+
- name: Install tools
16+
run: |
17+
dnf install -y bats iptables iproute jq criu golang make git
18+
- name: Fix git safe directory
19+
run: git config --global --add safe.directory /__w/checkpointctl/checkpointctl
1520
- name: checkout
1621
uses: actions/checkout@v4
1722
with:
1823
# needed for codecov
1924
fetch-depth: 0
20-
- name: Install tools
21-
run: |
22-
dnf install -y bats iptables iproute jq criu golang make
2325
- name: Run make coverage
2426
run: make coverage
2527

0 commit comments

Comments
 (0)