1
0
Fork 0
haveged/.github/workflows/ci.yaml

20 lines
384 B
YAML
Raw Normal View History

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