From b83ab2bf7efa32c9a5ee952a8cdaf657d8035553 Mon Sep 17 00:00:00 2001 From: Mayank Pande Date: Wed, 11 Jun 2025 10:37:46 +0530 Subject: [PATCH] chore: fix for ci --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d987f49..5d34fdfb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,10 @@ jobs: - uses: actions/setup-go@v5 with: go-version: '1.23.8' - - run: sudo apt install -y libsystemd-dev + - name: Install systemd headers + run: | + sudo apt-get update + sudo apt-get install -y libsystemd-dev - name: gofmt -l . run: files=$(gofmt -l .); if [[ -n "$files" ]]; then echo "$files"; exit 1; fi - name: goimports -l .