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