Skip to content

ci: add a simple github workflow #2

ci: add a simple github workflow

ci: add a simple github workflow #2

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
make-dist:
name: Run 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

Check failure on line 21 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 21, Col: 13): The identifier 'make dist' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
run: |
make dist