fix: specify Python 3.9 for Galaxy workflow

- Remove undefined matrix.python-version reference
- Use Python 3.9 to match molecule workflow and requirements
This commit is contained in:
Larry Smith Jr.
2025-11-03 07:29:16 -05:00
parent 850d571313
commit 416e840eea

View File

@@ -16,10 +16,10 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
submodules: recursive submodules: recursive
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python 3.9
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: '3.9'
- uses: actions/cache@v4 - uses: actions/cache@v4
with: with:
path: ~/.cache/pip path: ~/.cache/pip