Skip to content

Commit e5b54fc

Browse files
authored
Merge branch 'main' into AB_res
2 parents 9fe2a1a + b115b27 commit e5b54fc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1321
-1958
lines changed

.github/workflows/darglint.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Darglint checks
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
11+
build:
12+
runs-on: ubuntu-latest
13+
defaults:
14+
run:
15+
shell: bash -l {0}
16+
steps:
17+
18+
- name: Checkout Repository
19+
uses: actions/checkout@v4
20+
21+
- name: Set up Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: '3.10'
25+
cache: 'pip' # caching pip dependencies
26+
27+
- name: Pip install
28+
run: pip install darglint
29+
30+
- name: Pip list
31+
run: pip list
32+
33+
- name: Darglint checks
34+
run: darglint -v 2 -z short .

0 commit comments

Comments
 (0)