Skip to content

Commit

Permalink
fix matrix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
cscollett committed Aug 17, 2024
1 parent 65f0693 commit 096be95
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,21 @@ on:
- github-ci

jobs:
test-code-suite:
test-suite:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.12, 3.x]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: [3.11, 3.x]
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand Down

0 comments on commit 096be95

Please sign in to comment.