Skip to content

ci: add a simple github workflow #13

ci: add a simple github workflow

ci: add a simple github workflow #13

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- '**.md'
pull_request:
types: [assigned, edited, opened, synchronize, reopened]
jobs:
make-dist:
runs-on: ubuntu-latest
container: 'fedora:39'
steps:
- uses: actions/checkout@v2
- id: install_deps
run: |
dnf -y update
dnf -y install autoconf automake lilypond make xz
- id: configure
run: |
autoreconf --install
./configure
- id: make_dist
run: |
make dist