Skip to content

Commit c2cb732

Browse files
committed
Fix-up
1 parent 44a23f2 commit c2cb732

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
golangci:
12-
name: lint
12+
name: Lint
1313
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v4
@@ -44,6 +44,10 @@ jobs:
4444
- uses: actions/setup-go@v5
4545
with:
4646
go-version-file: 'go.mod'
47+
- name: "Install libpam"
48+
run: |
49+
sudo apt-get update
50+
sudo apt-get install -y libpam-dev
4751
- name: "Unit & module tests"
4852
run: |
4953
go test ./... -coverprofile=coverage.out -covermode=atomic

0 commit comments

Comments
 (0)