Skip to content

Add INSTALL.md and ChangeLog.md into dist package #34

Add INSTALL.md and ChangeLog.md into dist package

Add INSTALL.md and ChangeLog.md into dist package #34

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: autogen
run: sh autogen.sh
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libssh-dev libsystemd-dev
- name: configure
run: ./configure
- name: Run make
run: make
- name: Run check
run: make check
- name: Run distcheck
run: make distcheck