We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b755e7 commit d3fcf8cCopy full SHA for d3fcf8c
.github/workflows/packing.yml
@@ -510,6 +510,7 @@ jobs:
510
511
- name: Install test requirements
512
run: |
513
+ apt install -y python3.11-venv
514
python3 -m venv .venv
515
source .venv/bin/activate
516
pip3 install -r requirements-test.txt
@@ -521,10 +522,16 @@ jobs:
521
522
apt install -y tt
523
tt rocks install crud 1.4.2
524
525
+ - name: Run tests
526
+ run: |
527
+ make test-pure-install
528
+ if: matrix.target.os == 'ubuntu'
529
+
530
- name: Run tests
531
532
533
make test-pure-install
534
+ if: matrix.target.os == 'debian'
535
536
publish_deb:
537
if: startsWith(github.ref, 'refs/tags')
0 commit comments