Skip to content

Commit cc81d7d

Browse files
authored
Merge pull request #656 from nipy/gh-653
Add type annotations
2 parents 502bf49 + c03a5ae commit cc81d7d

Some content is hidden

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

44 files changed

+1823
-1163
lines changed

.github/workflows/typing.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Type-check
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
typing:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Check out repository
12+
uses: actions/checkout@v3
13+
with:
14+
fetch-depth: 0
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.7'
20+
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
python -m pip install --upgrade tox
25+
26+
- name: Run type checker
27+
run: tox -e typing

0 commit comments

Comments
 (0)