Skip to content

Commit

Permalink
👷 Add python testing for 3.8 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Xen0Xys committed Apr 29, 2024
1 parent 17d0aa0 commit e4bc3de
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ on:
jobs:
python-tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.12]
steps:
- name: "Checkout branch"
uses: actions/checkout@v4
- name: "Set up Python on Ubuntu"
uses: actions/setup-python@v5
uses: actions/setup-python@v2
with:
python-version: 3.12
python-version: ${{ matrix.python-version }}
- name: "Python codestyle"
run: |
pip install ".[dev]"
Expand Down

0 comments on commit e4bc3de

Please sign in to comment.