Skip to content

Commit

Permalink
Merge pull request #14 from madrisan/ci
Browse files Browse the repository at this point in the history
ci: add a simple github workflow
  • Loading branch information
madrisan authored Feb 13, 2024
2 parents 492e872 + 2a697e3 commit 1bce13c
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: ci

on:
push:
paths-ignore:
- '**.md'
- AUTHORS
- VERSION
pull_request:
types: [assigned, edited, opened, synchronize, reopened]

jobs:
build-checks:
runs-on: ubuntu-latest
container: 'fedora:39'

steps:
- uses: actions/checkout@v2

- id: install_deps
run: |
dnf -y update
dnf -y install autoconf automake bzip2 lilypond make xz
- id: configure
run: |
autoreconf --install
./configure
- id: make_dist
run: |
make dist
- id: make
run: |
make
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Sopran = \context Voice = "one" \relative c'' {
\tempo \markup {
\column {
\line { "Andante" }
\line { \italic\small { \roman "Mit andacht" } }
\line { \italic\small { \serif "Mit andacht" } }
\general-align #Y #-1
\line { \hspace #2 \small "Die Oberstimme sehr ausdrucksvoll und gehalten" }
\general-align #Y #-2
Expand Down

0 comments on commit 1bce13c

Please sign in to comment.