Skip to content

Commit

Permalink
✅ test: 测试其它 py 版本
Browse files Browse the repository at this point in the history
  • Loading branch information
abrahamgreyson committed Dec 11, 2024
1 parent 71c35f8 commit dbd17fa
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v3

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

- name: Create and activate virtual environment
Expand Down

0 comments on commit dbd17fa

Please sign in to comment.