Skip to content

Commit

Permalink
Merge pull request #340 from GuillaumeSeren/fix-python-version-in-ci
Browse files Browse the repository at this point in the history
Fix python version in ci
  • Loading branch information
GuillaumeSeren committed Dec 15, 2023
2 parents cbe4cdf + 18fe60d commit a3f6f6a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -14,10 +14,12 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: '${{ matrix.python }}'
python-version: '${{ matrix.python-version }}'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
shell: bash
run: |
Expand Down

0 comments on commit a3f6f6a

Please sign in to comment.