Skip to content

Commit

Permalink
ci: add a simple github workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Davide Madrisan <[email protected]>
  • Loading branch information
madrisan committed Feb 13, 2024
1 parent 492e872 commit 988327a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 988327a

Please sign in to comment.