Skip to content

Update README.md

Update README.md #22

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure --prefix=/home/runner
- name: make
run: make
- name: make install
run: make install
- name: execution
continue-on-error: true
run: /home/runner/bin/dnsmap
- name: make distclean
run: make distclean