From 73b8805a6e59308fdc05ac8939e451494212c6c3 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 | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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..9c9375ef --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,30 @@ +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 + + - id: configure + run: | + autoreconf --install + ./configure + + - id: make_dist + run: | + make dist