Skip to content

Commit

Permalink
Unify GitHub Actions install steps
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelad committed Jan 29, 2024
1 parent f4b094b commit 328ad32
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,11 @@ jobs:
cache: "pip"
cache-dependency-path: "requirements/*.txt"

- name: "Update pip and install Nox"
run: "python -m pip install pip nox -c requirements/constraints.txt"
- name: "Install pip and wheel"
run: "python -m pip install --upgrade pip wheel -c requirements/constraints.txt"

- name: "Install Nox"
run: "python -m pip install nox -c requirements/constraints.txt"

- name: "Run '${{ matrix.nox_session }}' Nox session"
run: "nox -s ${{ matrix.nox_session }}"

0 comments on commit 328ad32

Please sign in to comment.