diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml index b2162b6..d403a0c 100644 --- a/.github/workflows/lint-test.yml +++ b/.github/workflows/lint-test.yml @@ -11,6 +11,10 @@ on: jobs: lint_test: runs-on: ubuntu-latest + strategy: + matrix: + python-version: ['3.8', '3.12'] + steps: - name: Checkout 🏷️ uses: actions/checkout@v2 @@ -18,7 +22,7 @@ jobs: - name: Install Python 🐍 uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: ${{ matrix.python-version }} architecture: 'x64' - name: Install dependencies ⚙️