summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2022-11-17 09:01:49 -0700
committerMats Wichmann <mats@linux.com>2022-11-17 09:01:49 -0700
commit9b6056b7e3cea5407c7b50369843ee3e36d267fc (patch)
tree18a5f00d171475bd7de936b3c6130e6ffb24cd9a /.github
parent9dcdea7580a576eb7e8e683db55ee8d3b9183204 (diff)
downloadscons-git-9b6056b7e3cea5407c7b50369843ee3e36d267fc.tar.gz
runtest.yml: conform to yaml parsing for 3.10
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to '.github')
-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: