Skip to content

Commit

Permalink
try different python version
Browse files Browse the repository at this point in the history
  • Loading branch information
31good committed Sep 23, 2024
1 parent da1c314 commit 93a39fc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:[3.10,3.11,3.12]
os:[ubuntu-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Get Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: install packages
run: make install
- name: lint
Expand Down

0 comments on commit 93a39fc

Please sign in to comment.