Skip to content

ci: add a simple github workflow #4

ci: add a simple github workflow

ci: add a simple github workflow #4

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
make-dist:
name: Run make dist
runs-on: 'fedora:39'
steps:
- uses: actions/checkout@v2
- id: install_deps
run: |
dnf -y update
dnf -y install autoconf automake lilypond
- id: configure
run: |
autoreconf --install
./configure
- id: make_dist
run: |
make dist