File tree 1 file changed +11
-6
lines changed
1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -45,18 +45,23 @@ jobs:
45
45
toolchain : 1.83.0
46
46
override : true
47
47
components : rustfmt, clippy
48
- - name : Set up Python 3.7
48
+ - name : Set up Python
49
49
uses : actions/setup-python@v4
50
50
with :
51
- python-version : 3.7
51
+ python-version : ' 3.13'
52
+ - name : Install pip and test dependencies
53
+ run : |
54
+ sudo apt-get update
55
+ sudo apt-get install -y python3-pip
56
+ if [ -f requirements.txt ]; then sudo pip install -r requirements.txt; fi
57
+ - name : Verify installation
58
+ run : |
59
+ python --version
60
+ pip --version
52
61
- name : Install libunwind and debug symbols
53
62
run : |
54
63
sudo apt-get update
55
64
sudo apt-get install libunwind-dev libc6-dbg
56
- - name : Install test dependencies
57
- run : |
58
- sudo python -m pip install --upgrade pip
59
- if [ -f requirements.txt ]; then sudo pip install -r requirements.txt; fi
60
65
- name : Build debugger and test programs
61
66
run : make build-all
62
67
- name : Run integration tests
You can’t perform that action at this time.
0 commit comments