Skip to content

Commit

Permalink
Clean up main.yml (#1667)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorbaca authored Mar 9, 2025
1 parent dff1739 commit 4d5a030
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 17 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
lilypond-version: ["2.25.23"]
lilypond-version: ["2.25.24"]
python-version: ["3.12", "3.13"]

steps:
Expand All @@ -32,7 +32,7 @@ jobs:
key: >
${{ runner.os }}-pip-
${{ matrix.python-version }}-
${{ hashFiles('ci/requirements.txt') }}
${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
${{ runner.os }}-pip-
Expand All @@ -57,10 +57,13 @@ jobs:
with:
lilypond-version: ${{ matrix.lilypond-version }}

- name: Install Python dependencies
- name: Install this repo
run: |
# [dev] for black, flake8, etc
python -m pip install --upgrade pip
python -m pip install -r ci/requirements.txt --no-cache-dir
python -m pip install -e ".[dev]"
python -c "import abjad; print(abjad.Configuration().configuration_file_path)"
python scripts/prime_parser_tables.py 2>/dev/null
- name: Log Python dependencies
run: |
Expand All @@ -71,12 +74,6 @@ jobs:
pip --version
pytest --version
- name: Install this repo
run: |
python -m pip install -e .
python -c "import abjad; print(abjad.Configuration().configuration_file_path)"
python scripts/prime_parser_tables.py 2>/dev/null
- name: Run lints
run: |
make black-check
Expand Down
7 changes: 0 additions & 7 deletions ci/requirements.txt

This file was deleted.

0 comments on commit 4d5a030

Please sign in to comment.