Skip to content

Commit

Permalink
Explicitly install setuptools etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunns authored Jun 16, 2023
1 parent fe1ea54 commit 1d38fdc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox~=3.0
- name: Install build tools
run: python3 -m pip install --upgrade pip setuptools wheel tox~=3.0
- name: Run Tests
# Run tox using the version of Python in `PATH`
run: tox -e py
Expand All @@ -49,8 +49,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox~=3.0
- name: Install build tools
run: python3 -m pip install --upgrade pip setuptools wheel tox~=3.0
- name: Run Tests
# Run tox using the version of Python in `PATH`
run: tox -e py
Expand All @@ -71,8 +71,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox~=3.0
- name: Install build tools
run: python3 -m pip install --upgrade pip setuptools wheel tox~=3.0
- name: Install and Start Colima
run: |
if [[ "${{ matrix.os }}" == *"macos"* ]]
Expand Down Expand Up @@ -100,8 +100,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox~=3.0
- name: Install build tools
run: python3 -m pip install --upgrade pip setuptools wheel tox~=3.0
- name: Check coverage
run: tox -e coverage

Expand All @@ -120,8 +120,8 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Tox and any other packages
run: pip install tox~=3.0
- name: Install build tools
run: python3 -m pip install --upgrade pip setuptools wheel tox~=3.0
- name: Check format
run: tox -e check-format
- name: Lint
Expand Down

0 comments on commit 1d38fdc

Please sign in to comment.