Skip to content

Commit

Permalink
Add CI test for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
loichuder committed Aug 29, 2024
1 parent 116a629 commit c1cc89e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,18 @@ on:
jobs:
lint_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']

steps:
- name: Checkout 🏷️
uses: actions/checkout@v2

- name: Install Python 🐍
uses: actions/setup-python@v2
with:
python-version: '3.8'
python-version: ${{ matrix.python-version }}
architecture: 'x64'

- name: Install dependencies ⚙️
Expand Down

0 comments on commit c1cc89e

Please sign in to comment.