Skip to content

Move installation guide to INSTALL.md #30

Move installation guide to INSTALL.md

Move installation guide to INSTALL.md #30

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "gbk" ]
pull_request:
branches: [ "gbk" ]
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