File tree Expand file tree Collapse file tree 5 files changed +10
-108
lines changed Expand file tree Collapse file tree 5 files changed +10
-108
lines changed Original file line number Diff line number Diff line change 14
14
steps :
15
15
- name : Checkout
16
16
uses : actions/checkout@v2
17
- - name : Install Python
18
- uses : actions/setup-python@v2
19
- with :
20
- python-version : 3.9
21
- architecture : " x64"
22
- - name : Get pip cache dir
23
- id : pip-cache
24
- run : |
25
- echo "::set-output name=dir::$(pip cache dir)"
26
- - name : Cache pip
27
- uses : actions/cache@v2
28
- with :
29
- path : ${{ steps.pip-cache.outputs.dir }}
30
- key : ${{ runner.os }}-pip-${{ hashFiles('setup.cfg') }}
31
- restore-keys : |
32
- ${{ runner.os }}-pip-
33
- ${{ runner.os }}-pip-
34
- - name : Cache checked links
35
- if : ${{ matrix.group == 'link_check' }}
36
- uses : actions/cache@v2
37
- with :
38
- path : ~/.cache/pytest-link-check
39
- key : ${{ runner.os }}-linkcheck-${{ hashFiles('**/*.md', '**/*.rst') }}-md-links
40
- restore-keys : |
41
- ${{ runner.os }}-linkcheck-
42
- - name : Upgrade packaging dependencies
43
- run : |
44
- pip install --upgrade pip setuptools wheel --user
17
+ - name : Base Setup
18
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
45
19
- name : Install Dependencies
46
20
run : |
47
21
pip install -e .
Original file line number Diff line number Diff line change 15
15
steps :
16
16
- name : Checkout
17
17
uses : actions/checkout@v2
18
- - name : Install Python ${{ matrix.python-version }}
19
- uses : actions/setup-python@v2
20
- with :
21
- python-version : ${{ matrix.python-version }}
22
- architecture : " x64"
23
- - name : Upgrade packaging dependencies
24
- run : |
25
- pip install --upgrade pip setuptools wheel --user
26
- - name : Get pip cache dir
27
- id : pip-cache
28
- run : |
29
- echo "::set-output name=dir::$(pip cache dir)"
30
- - name : Cache pip
31
- uses : actions/cache@v2
32
- with :
33
- path : ${{ steps.pip-cache.outputs.dir }}
34
- key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }}
35
- restore-keys : |
36
- ${{ runner.os }}-pip-${{ matrix.python-version }}-
37
- ${{ runner.os }}-pip-
18
+ - name : Base Setup
19
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
38
20
- name : Install the Python dependencies
39
21
run : |
40
22
pip install -e ".[test]"
Original file line number Diff line number Diff line change 39
39
steps :
40
40
- name : Checkout
41
41
uses : actions/checkout@v2
42
- - name : Install Python ${{ matrix.python-version }}
43
- uses : actions/setup-python@v2
44
- with :
45
- python-version : ${{ matrix.python-version }}
46
- architecture : " x64"
47
- - name : Upgrade packaging dependencies
48
- run : |
49
- pip install --upgrade pip setuptools wheel --user
50
- - name : Get pip cache dir
51
- id : pip-cache
52
- run : |
53
- echo "::set-output name=dir::$(pip cache dir)"
54
- - name : Cache pip
55
- uses : actions/cache@v2
56
- with :
57
- path : ${{ steps.pip-cache.outputs.dir }}
58
- key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }}
59
- restore-keys : |
60
- ${{ runner.os }}-pip-${{ matrix.python-version }}-
61
- ${{ runner.os }}-pip-
42
+ - name : Base Setup
43
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
62
44
- name : Install the Python dependencies
63
45
run : |
64
46
pip install -e ".[test]" codecov
Original file line number Diff line number Diff line change 16
16
steps :
17
17
- name : Checkout
18
18
uses : actions/checkout@v2
19
- - name : Install Python ${{ matrix.python-version }}
20
- uses : actions/setup-python@v2
21
- with :
22
- python-version : ${{ matrix.python-version }}
23
- architecture : " x64"
24
- - name : Upgrade packaging dependencies
25
- run : |
26
- pip install --upgrade pip setuptools wheel --user
27
- - name : Get pip cache dir
28
- id : pip-cache
29
- run : |
30
- echo "::set-output name=dir::$(pip cache dir)"
31
- - name : Cache pip
32
- uses : actions/cache@v2
33
- with :
34
- path : ${{ steps.pip-cache.outputs.dir }}
35
- key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }}
36
- restore-keys : |
37
- ${{ runner.os }}-pip-${{ matrix.python-version }}-
38
- ${{ runner.os }}-pip-
19
+ - name : Base Setup
20
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
39
21
- name : Install the Python dependencies
40
22
run : |
41
23
pip install -e .[test] codecov
Original file line number Diff line number Diff line change 15
15
steps :
16
16
- name : Checkout
17
17
uses : actions/checkout@v2
18
- - name : Install Python ${{ matrix.python-version }}
19
- uses : actions/setup-python@v2
20
- with :
21
- python-version : ${{ matrix.python-version }}
22
- architecture : " x64"
23
- - name : Upgrade packaging dependencies
24
- run : |
25
- pip install --upgrade pip setuptools wheel --user
26
- - name : Get pip cache dir
27
- id : pip-cache
28
- run : |
29
- echo "::set-output name=dir::$(pip cache dir)"
30
- - name : Cache pip
31
- uses : actions/cache@v2
32
- with :
33
- path : ${{ steps.pip-cache.outputs.dir }}
34
- key : ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('setup.cfg') }}
35
- restore-keys : |
36
- ${{ runner.os }}-pip-${{ matrix.python-version }}-
37
- ${{ runner.os }}-pip-
18
+ - name : Base Setup
19
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
38
20
- name : Install the Python dependencies
39
21
run : |
40
22
pip install -e .[test]
You can’t perform that action at this time.
0 commit comments