Skip to content

Commit

Permalink
Install multiple Python version in release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sopelj committed Nov 1, 2023
1 parent cbfc212 commit 9bc88cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
release:
name: Create Release
runs-on: ubuntu-latest
strategy:
matrix:
python-versions: ['3.12']

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -36,7 +33,10 @@ jobs:

- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-versions }}
python-version: |
3.10
3.11
3.12
- name: Install dependencies
run: |
Expand Down

0 comments on commit 9bc88cc

Please sign in to comment.