Merge pull request #7 from enpaul/enp/ci

Update CI to always use python3.10 for metaenv
This commit is contained in:
Ethan Paul 2024-03-21 18:33:05 -04:00 committed by GitHub
commit 0bb654c2e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -15,7 +15,7 @@ INSTALL_POETRY_VERSION="${POETRY_VERSION:-1.3.2}";
mkdir --parents "$CI_CACHE";
command -v python;
python --version;
python3.10 --version;
curl --location https://install.python-poetry.org \
--output "$CI_CACHE/install-poetry.py" \

View File

@ -29,6 +29,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Python ${{ matrix.python.version }}
uses: actions/setup-python@v4
with: