summaryrefslogtreecommitdiff
path: root/.github/workflows/runtest.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/runtest.yml')
-rw-r--r--.github/workflows/runtest.yml11
1 files changed, 7 insertions, 4 deletions
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: