From 30b7209fddf62439596bb2b56523f6d716da4e4e Mon Sep 17 00:00:00 2001 From: Simon Brunning Date: Fri, 16 Jun 2023 08:16:19 +0100 Subject: [PATCH] Explicitly install setuptools etc. --- .github/workflows/ci.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e91b17..1d74802 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Continuous Integration +name: CI on: push: @@ -27,8 +27,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - 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 mbtest ${{ matrix.mbtest-version }} env: MBTEST_VERSION: ${{ matrix.mbtest-version }} @@ -69,8 +69,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - 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 mbtest ${{ matrix.mbtest-version }} env: MBTEST_VERSION: ${{ matrix.mbtest-version }} @@ -103,8 +103,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - 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 mbtest ${{ matrix.mbtest-version }} env: MBTEST_VERSION: ${{ matrix.mbtest-version }} @@ -137,8 +137,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - 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"* ]] @@ -179,8 +179,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - 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 mbtest ${{ matrix.mbtest-version }} env: MBTEST_VERSION: ${{ matrix.mbtest-version }} @@ -206,8 +206,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