1
0
Fork 0
haveged/.github/workflows/ci.yaml
Daniel Baumann 49fcf7364a
Adding upstream version 1.9.14.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 13:10:21 +01:00

19 lines
384 B
YAML

name: Continuous Integration
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: reconfigure
run: autoreconf -fi
- name: configure
run: ./configure --prefix="/usr"
- name: make
run: make
- name: make check
run: make check
- name: make install
run: sudo make install