1 parent aa88d6e commit 06941b9Copy full SHA for 06941b9
1 file changed
.github/workflows/ci.yml
@@ -19,8 +19,19 @@ jobs:
19
- name: Install arm-none-eabi-gcc
20
uses: carlosperate/arm-none-eabi-gcc-action@v1
21
22
+ - name: Set up Python
23
+ uses: actions/setup-python@v5
24
+ with:
25
+ python-version: '3.11'
26
+
27
+ - name: Install virtualenv
28
+ run: pip install virtualenv
29
30
- name: Configure
31
run: ./configure --enable-O2 --enable-asan
32
33
- name: Build and test
- run: make test -j$(nproc)
34
+ run: |
35
+ virtualenv .venv
36
+ source .venv/bin/activate
37
+ make test -j$(nproc)
0 commit comments