Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit f9b41b6

Browse files
committed
[WIP] Python version and release job
Signed-off-by: Geovanny González-Rodríguez <geovanny.gonzalez@cern.ch>
1 parent 28e5f50 commit f9b41b6

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/pylint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
uses: actions/checkout@v4
1616
with:
1717
submodules: true
18-
- name: Set up Python 3.9
19-
uses: actions/setup-python@v1
18+
- name: Set up Python
19+
uses: actions/setup-python@v4
2020
with:
21-
python-version: 3.9
21+
python-version: 3.11.4
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
2525
python -m pip install -r requirements.txt
2626
pip install pylint
2727
- name: Analysing the code with pylint
2828
run: |
29-
python3 -m pylint `find . -type f | grep .py$ | grep -v tests/ | xargs` --disable=R0201,R0903
29+
python3 -m pylint `find . -type f | grep .py$ | grep -v -e tests/ -e core_lib/ -e venv/ | xargs` --disable=R0201,R0903

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,10 @@ jobs:
9696
with:
9797
node-version: '14'
9898

99-
- uses: actions/checkout@v2
99+
- name: Checkout repository
100+
uses: actions/checkout@v4
100101
with:
102+
submodules: true
101103
path: ValDB
102104

103105
- name: Save timestamp in release

0 commit comments

Comments
 (0)