Skip to content

Commit

Permalink
test different versions of python with ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Aug 2, 2024
1 parent 6c8cebe commit 726442b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,19 @@ jobs:

ctt:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['3.11', '3.12', '3.10']

steps:
- name: Checkout Code Repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}

- name: Setup temporary git identity
run: git config --global user.email "you@example.com" && git config --global user.name "Your Name"

Expand Down

0 comments on commit 726442b

Please sign in to comment.