From 9b6056b7e3cea5407c7b50369843ee3e36d267fc Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Thu, 17 Nov 2022 09:01:49 -0700 Subject: runtest.yml: conform to yaml parsing for 3.10 Signed-off-by: Mats Wichmann --- .github/workflows/runtest.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to '.github') diff --git a/.github/workflows/runtest.yml b/.github/workflows/runtest.yml index 961d8990c..a50670bf9 100644 --- a/.github/workflows/runtest.yml +++ b/.github/workflows/runtest.yml @@ -30,18 +30,21 @@ 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 -r requirements-dev.txt # sudo apt-get update + - name: runtest ${{ matrix.os }} run: | python runtest.py --all --time --jobs=2 + - name: Archive Failed tests ${{ matrix.os }} uses: actions/upload-artifact@v2 with: -- cgit v1.2.1