Skip to content

Clean up README.md #276

Clean up README.md

Clean up README.md #276

Workflow file for this run

name: abjad-ext-rmakers
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14-dev"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install LilyPond
run: |
lilypond_version=2.25.22
lilypond_archive=lilypond-${lilypond_version}-linux-x86_64.tar.gz
lilypond_url=https://gitlab.com/lilypond/lilypond/-/releases/
lilypond_url=${lilypond_url}/v${lilypond_version}/downloads/${lilypond_archive}
echo ${lilypond_url}
cd /tmp
wget -q ${lilypond_url}
tar -xf ${lilypond_archive}
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install Abjad
run: |
git clone -b trevor/dev https://github.com/Abjad/abjad.git /tmp/abjad
pip install /tmp/abjad[dev]
- name: Install rmakers
run: |
python -m pip install -e .
- name: Log versions
run: |
export PATH=/tmp/lilypond-2.25.22/bin:/home/runner/bin:$PATH
black --version
flake8 --version
isort --version
mypy --version
pip --version
pytest --version
lilypond --version
- name: Run checks and tests
run: |
export PATH=/home/runner/bin:${PATH}
export MYPYPATH=$MYPYPATH:/tmp/abjad
echo $MYPYPATH
make black-check
make flake8
make isort-check
make mypy
make pytest