Skip to content

Commit

Permalink
release.py expects Euphonic to be installed already
Browse files Browse the repository at this point in the history
This seems like overkill, we have already been quite careful to create
consistent version information. But it wouldn't hurt to have these
checks running for an automated release cycle before we consider
pruning them.
  • Loading branch information
ajjackson committed Feb 10, 2025
1 parent da0407f commit 6462e55
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,16 @@ jobs:
ref: ${{ inputs.ref }}
fetch-depth: 1

- name:
- uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Basic installation to check euphonic.__version__
shell: bash -l {0}
run: |
python -m pip install .
- name: Check version consistency, generate Github release page
run : |
python build_utils/release.py --github ${{ inputs.push && '--notest' || '' }}
Expand Down

0 comments on commit 6462e55

Please sign in to comment.