style changes and remove spurious runc test call at the bottom

This commit is contained in:
Andrej Karpathy
2023-08-16 02:22:13 +00:00
parent d47fc41b6a
commit 62a6d69d86
2 changed files with 16 additions and 21 deletions
+11 -14
View File
@@ -92,10 +92,10 @@ jobs:
id: make_build_runfast
run: |
make runfast
- name: Test with pytest
run: pytest
@@ -103,7 +103,7 @@ jobs:
runs-on: windows-latest
strategy:
fail-fast: false #necessary, otherwise the matrix breaks
fail-fast: false #necessary, otherwise the matrix breaks
matrix:
arch:
- amd64
@@ -128,7 +128,7 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Pip setup
if: matrix.arch != 'amd64_arm64'
run: |
@@ -144,8 +144,8 @@ jobs:
#cross-comiled, cannot be run on host
- name: Test with pytest
if: matrix.arch != 'amd64_arm64'
run: pytest
if: matrix.arch != 'amd64_arm64'
run: pytest
windows-latest-mingw:
runs-on: windows-latest
@@ -171,15 +171,15 @@ jobs:
install: mingw-w64-${{matrix.env}}-gcc make
- name: Build ${{ matrix.sys }} ${{ matrix.env }}
id: build_mingw
id: build_mingw
run: |
make win64
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Pip setup
shell: powershell
run: |
@@ -187,10 +187,7 @@ jobs:
if (Test-Path requirements.txt) {
pip install -r requirements.txt
}
- name: Test with pytest
shell: powershell
run: pytest
run: pytest