Skip to content

Commit

Permalink
[GitHub] Minor fixes to matrices used in workflow definitions.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarciani committed Aug 13, 2024
1 parent 479c2f6 commit 3581fd1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,17 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-11]
python: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11]
os:
- ubuntu-20.04
- windows-2019
- macos-11
python:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'

steps:
- name: Checkout Repository
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ jobs:

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

steps:
- name: Checkout Repository
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ python ]
language:
- python

steps:
- name: Checkout Repository
Expand Down

0 comments on commit 3581fd1

Please sign in to comment.