Skip to content

Commit

Permalink
[Python3.11] Added CI for python3.11 (#3802)
Browse files Browse the repository at this point in the history
  • Loading branch information
agl29 authored Aug 7, 2024
1 parent f75608c commit 89c8ee7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commitflow-py3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:
jobs:
build:

runs-on: ${{ matrix.python-version == '3.10' && 'ubuntu-22.04' || 'ubuntu-20.04' }}
runs-on: ${{ (matrix.python-version == '3.10' || matrix.python-version == '3.11') && 'ubuntu-22.04' || 'ubuntu-20.04' }}

strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11']

steps:
- name: Checkout
Expand Down

0 comments on commit 89c8ee7

Please sign in to comment.