Skip to content

Commit

Permalink
chore(ci): install libsystemd-dev in ci (#1)
Browse files Browse the repository at this point in the history
This fixes failures caused by missing systemd headers.

Signed-off-by: Erik Swanson <[email protected]>
  • Loading branch information
eriksw authored Nov 6, 2020
1 parent 265bfe5 commit 523ceb3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Install libsystemd-dev
run: sudo apt-get install libsystemd-dev
- name: Checkout
uses: actions/checkout@v2
- name: golangci-lint
Expand All @@ -21,6 +23,8 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- name: Install libsystemd-dev
run: sudo apt-get install libsystemd-dev
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
Expand All @@ -37,6 +41,8 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- name: Install libsystemd-dev
run: sudo apt-get install libsystemd-dev
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
Expand Down

0 comments on commit 523ceb3

Please sign in to comment.