Skip to content

Commit dd6382e

Browse files
authored
Merge pull request #179 from PanDAWMS/next
3.11.0.29
2 parents e48a17f + 5b84958 commit dd6382e

24 files changed

Lines changed: 991 additions & 631 deletions
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Vericode Pylint Check
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
workflow_dispatch:
8+
9+
jobs:
10+
vericode-check:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
python-version: [3.9, 3.11, 3.12]
15+
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v3
19+
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
25+
- name: Install vericode
26+
run: pip install vericode
27+
28+
- name: Run vericode (pylint)
29+
run: vericode -t pylint -s . --scores-less-than 8

PILOTVERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.10.5.57
1+
3.11.0.29

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![Vericode Pylint Check](https://github.com/PalNilsson/pilot3/actions/workflows/vericode-check.yml/badge.svg)
2+
13
# PanDA Pilot 3
24

35
## Contributions

0 commit comments

Comments
 (0)