Add PAM module stub generator, modules implmentations and integration tests #80
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, pull_request] | |
name: Test | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [1.20.x, 1.21.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Install PAM | |
run: sudo apt install -y libpam-dev | |
- name: Add a test user | |
run: sudo useradd -d /tmp/test -p '$1$Qd8H95T5$RYSZQeoFbEB.gS19zS99A0' -s /bin/false test | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Test | |
run: sudo go test -v ./... | |
- name: Generate example module | |
run: | | |
go generate -C example-module -v | |
test -e example-module/libpam_go.so |