Skip to content

Commit

Permalink
Run dependency check on all supported Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
gemenerik authored Nov 20, 2024
1 parent 9313d01 commit 4fc747d
Showing 1 changed file with 12 additions and 33 deletions.
45 changes: 12 additions & 33 deletions .github/workflows/dependency_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,23 @@ on:
- cron: '0 2 * * *'

jobs:
python-latest:
python-check:
strategy:
matrix:
python-version: [3.10, 3.11, 3.12, 3.13]
runs-on: ubuntu-latest
container:
image: python:latest

steps:
- uses: actions/checkout@v4
- name: Checkout repository
uses: actions/checkout@v4

- name: python version
run: python --version

- name: install lib
run: pip install -e .

python-python311:
runs-on: ubuntu-latest
container:
image: python:3.11

steps:
- uses: actions/checkout@v4

- name: python version
run: python --version

- name: install lib
run: pip install -e .

minimum-python310:
runs-on: ubuntu-latest
container:
image: python:3.10

steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: python version
- name: Verify Python version
run: python --version

- name: install lib
- name: Install library
run: pip install -e .

0 comments on commit 4fc747d

Please sign in to comment.