From 988327a11adc71075ce0169df9476e59bedf045f Mon Sep 17 00:00:00 2001 From: Davide Madrisan Date: Tue, 13 Feb 2024 22:30:51 +0100 Subject: [PATCH] ci: add a simple github workflow Signed-off-by: Davide Madrisan --- .github/workflows/ci.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..ea174c9c --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,29 @@ +name: ci + +on: + push: + paths-ignore: + - '**.md' + pull_request: + types: [assigned, edited, opened, synchronize, reopened] + +jobs: + 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