File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: Python application
5
5
6
6
on :
7
7
push :
8
- branches : [ "main" ]
8
+ branches : [ "main", "MAYO1.1" ]
9
9
pull_request :
10
10
branches : [ "main" ]
11
11
@@ -19,10 +19,10 @@ jobs:
19
19
20
20
steps :
21
21
- uses : actions/checkout@v3
22
- - name : Set up Python 3.10
22
+ - name : Set up Python 3.12
23
23
uses : actions/setup-python@v3
24
24
with :
25
- python-version : " 3.10 "
25
+ python-version : " 3.12 "
26
26
- name : Install dependencies
27
27
run : |
28
28
python -m pip install --upgrade pip
31
31
sudo apt-get install -y make
32
32
sudo apt-get install -y sagemath
33
33
sage --pip install pycryptodomex
34
+ - name : Check installed versions
35
+ run : |
36
+ # Print Python version
37
+ python --version
38
+ # Print pip version
39
+ pip --version
40
+ # Print installed pycryptodomex version
41
+ python -c "import Cryptodome; print('pycryptodomex version:', Cryptodome.__version__)"
42
+ # Print SageMath version
43
+ sage --version
34
44
- name : Test application
35
45
run : |
36
46
make test
You can’t perform that action at this time.
0 commit comments