Skip to content

Commit

Permalink
📝 Updates CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jefftriplett committed Aug 16, 2024
1 parent 25cfa8e commit bb4fe56
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,23 @@ jobs:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
cache-dependency-path: '**/setup.cfg'
cache: 'pip'
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install uv
- name: Upgrade django version
run: |
python -m pip install "Django~=${{ matrix.django-version }}.0"
python -m uv pip install "Django~=${{ matrix.django-version }}.0"
- name: Install dependencies
run: |
python -m pip install -e ".[test]"
python -m uv pip install --system -e ".[test]"
- name: Run django-friendship tests
run: |
Expand Down

0 comments on commit bb4fe56

Please sign in to comment.