Skip to content

Commit

Permalink
Use library to help major update
Browse files Browse the repository at this point in the history
  • Loading branch information
cscollett committed Aug 19, 2024
1 parent f9a9fbd commit e16431f
Show file tree
Hide file tree
Showing 3 changed files with 1,053 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compatability-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:
- name: Install dependencies
run: |
if [[ "${{ matrix.update-strategy }}" == "none" ]]; then
poetry install --no-update --with dev
poetry install --no-root
elif [[ "${{ matrix.update-strategy }}" == "minor" ]]; then
poetry update --minor
elif [[ "${{ matrix.update-strategy }}" == "major" ]]; then
poetry update
elif [[ "${{ matrix.update-strategy }}" == "major" ]]; then
poetry up --latest
fi
- name: Run tests
Expand Down
Loading

0 comments on commit e16431f

Please sign in to comment.