mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-02-19 02:34:06 -05:00
28 lines
514 B
YAML
28 lines
514 B
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
persist-credentials: false
|
|
- name: install packages
|
|
run: sudo apt-get install autoconf automake libtool make
|
|
- name: configure
|
|
run: |
|
|
autoreconf -fi
|
|
./configure --enable-debug
|
|
- name: make
|
|
run: make
|
|
- name: make test
|
|
run: make test
|