Skip to content

Commit

Permalink
ci: use string for python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Sep 20, 2024
1 parent 8ff56a4 commit 5e0bc04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
uses: chartboost/ruff-action@v1

test:
name: Run Unit Tests on Multiple Python Versions
name: Run Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10, 3.11] # Python versions to test
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 5e0bc04

Please sign in to comment.