Skip to content

feat: add Debian packaging #7

feat: add Debian packaging

feat: add Debian packaging #7

Workflow file for this run

name: Test make and install
on:
push:
pull_request:
branches: [main]
permissions: {}
jobs:
make-targets:
permissions:
contents: read
strategy:
matrix:
go-version: [1.25.x, 1.26.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
lfs: true
fetch-depth: 0 #for better blame info
- name: Install macOS dependencies
if: runner.os == 'macOS'
run: |
brew install autoconf automake libtool
- name: Setup
run: |
./build.sh
./configure
- name: Compile
run: |
make V=1
- name: Test
run: |
make check
- name: Install
run: |
sudo make V=1 install