Skip to content

Commit

Permalink
test: setup python matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
asdofindia committed Oct 22, 2023
1 parent 27b24f8 commit e85bd31
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@ permissions:
contents: read

jobs:
build:
test:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.3", "3.12"]

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit e85bd31

Please sign in to comment.