Skip to content

Commit 241382a

Browse files
committed
use precompiled python modules
1 parent 6a6470f commit 241382a

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/validator.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
- name: Dependency check for Testbench imports
3030
run: ./validator.sh 'module_import_test'
3131
- name: Prepare system for execution
32-
uses: actions/setup-python@v2
33-
with:
34-
python-version: "3.x"
32+
run: |
33+
sudo apt update
34+
cat ./requirements.system.txt | xargs sudo apt -y install
3535
- name: Install Testbench module to system
3636
run: pip install .
3737
- name: Pass tests for referent implementation

requirements.system.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
python3
2+
python3-pip
3+
python-is-python3
4+
python3-wheel

0 commit comments

Comments
 (0)