File tree 2 files changed +19
-6
lines changed 2 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 1
- name : Setup poetry
1
+ name : Install project dependencies
2
2
3
3
inputs :
4
4
python-version :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: 'Test'
3
3
on :
4
4
[push, pull_request, workflow_dispatch]
5
5
jobs :
6
- test :
6
+ released :
7
7
runs-on : ${{ matrix.os }}
8
8
timeout-minutes : 10
9
9
strategy :
16
16
17
17
- uses : actions/checkout@v3
18
18
19
- - uses : ./.github/setup
19
+ - name : Install project dependencies
20
+ uses : ./.github/setup
20
21
with :
21
22
os : ${{ matrix.os }}
22
23
python-version : ${{ matrix.python-version }}
42
43
- name : Install pandas-stubs and run tests on the installed stubs
43
44
run : poetry run poe test_dist
44
45
45
- # pandas nightly might have deprecated older python versions
46
- - if : matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest'
47
- name : Run pytest (against pandas nightly)
46
+ nightly :
47
+ runs-on : ubuntu-latest
48
+ timeout-minutes : 10
49
+
50
+ steps :
51
+
52
+ - uses : actions/checkout@v3
53
+
54
+ - name : Install project dependencies
55
+ uses : ./.github/setup
56
+ with :
57
+ os : ubuntu-latest
58
+ python-version : ' 3.10'
59
+
60
+ - name : Run pytest (against pandas nightly)
48
61
run : poetry run poe pytest --nightly
You can’t perform that action at this time.
0 commit comments