add multiple python versions
This commit is contained in:
@@ -10,14 +10,18 @@ on:
|
||||
jobs:
|
||||
python-lint:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9", "3.11"]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v3
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.9.x'
|
||||
python-version: ${{ matrix.python-version }}
|
||||
cache: 'pip'
|
||||
architecture: 'x64'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user