Skip to content

Commit

Permalink
Set dependencies to the most minimum version (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
njooma authored Oct 5, 2023
1 parent 25ba63d commit 0b4c3ad
Show file tree
Hide file tree
Showing 4 changed files with 769 additions and 881 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ concurrency:
on:
workflow_dispatch:
push:
branches: [ main ]
branches: [main]
pull_request_target:
branches: [ main ]
branches: [main]

jobs:
test:
Expand All @@ -20,6 +20,7 @@ jobs:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
requirements-version: ["min", "max"]
steps:
- name: Checkout Push/Workflow Dispatch
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push'
Expand All @@ -39,6 +40,10 @@ jobs:
- name: Install package
run: make install

- name: Install minimum package versions
run: poetry run pip install -r requirements-test.txt
if: ${{ matrix.requirements-version == 'min' }}

- name: Lint
run: make lint

Expand Down
Loading

0 comments on commit 0b4c3ad

Please sign in to comment.