Procházet zdrojové kódy

Added packaging tools to GitHub actions.

Mariusz Felisiak před 3 roky
rodič
revize
fbacaa58ff

+ 3 - 1
.github/workflows/schedule_tests.yml

@@ -28,7 +28,9 @@ jobs:
           python-version: ${{ matrix.python-version }}
           cache: 'pip'
           cache-dependency-path: 'tests/requirements/py3.txt'
-      - run: pip install -r tests/requirements/py3.txt -e .
+      - name: Install and upgrade packaging tools
+        run: python -m pip install --upgrade pip setuptools wheel
+      - run: python -m pip install -r tests/requirements/py3.txt -e .
       - name: Run tests
         run: python tests/runtests.py -v2
 

+ 3 - 1
.github/workflows/tests.yml

@@ -31,7 +31,9 @@ jobs:
           python-version: ${{ matrix.python-version }}
           cache: 'pip'
           cache-dependency-path: 'tests/requirements/py3.txt'
-      - run: pip install -r tests/requirements/py3.txt -e .
+      - name: Install and upgrade packaging tools
+        run: python -m pip install --upgrade pip setuptools wheel
+      - run: python -m pip install -r tests/requirements/py3.txt -e .
       - name: Run tests
         run: python tests/runtests.py -v2