From 9dcdea7580a576eb7e8e683db55ee8d3b9183204 Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Thu, 17 Nov 2022 08:50:35 -0700 Subject: Modify linux runner The actions/setup-python@v2 failed - 3.10 misinterpreted as 3.1. ??? Try not running it at all... Signed-off-by: Mats Wichmann --- .github/workflows/runtest.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/runtest.yml b/.github/workflows/runtest.yml index 7007a9b..961d899 100644 --- a/.github/workflows/runtest.yml +++ b/.github/workflows/runtest.yml @@ -30,14 +30,14 @@ jobs: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - name: Set up Python 3.10 ${{ matrix.os }} - uses: actions/setup-python@v2 - with: - python-version: 3.10 + #- name: Set up Python 3.10 ${{ matrix.os }} + # uses: actions/setup-python@v2 + # with: + # python-version: 3.10 - name: Install dependencies including ninja ${{ matrix.os }} run: | python -m pip install --upgrade pip setuptools wheel - python -m pip install ninja psutil + python -m pip -r requirements-dev.txt # sudo apt-get update - name: runtest ${{ matrix.os }} run: | -- cgit v0.12