Skip to content

Commit 0e268ed

Browse files
committed
Improve CI
1 parent e899910 commit 0e268ed

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/python-app.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Python application
55

66
on:
77
push:
8-
branches: [ "main" ]
8+
branches: [ "main", "MAYO1.1" ]
99
pull_request:
1010
branches: [ "main" ]
1111

@@ -19,10 +19,10 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v3
22-
- name: Set up Python 3.10
22+
- name: Set up Python 3.12
2323
uses: actions/setup-python@v3
2424
with:
25-
python-version: "3.10"
25+
python-version: "3.12"
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
@@ -31,6 +31,16 @@ jobs:
3131
sudo apt-get install -y make
3232
sudo apt-get install -y sagemath
3333
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
3444
- name: Test application
3545
run: |
3646
make test

0 commit comments

Comments
 (0)