@@ -3,11 +3,11 @@ name: Posix
3
3
on :
4
4
push :
5
5
branches :
6
- - master
6
+ - main
7
7
- 1.4.x
8
8
pull_request :
9
9
branches :
10
- - master
10
+ - main
11
11
- 1.4.x
12
12
paths-ignore :
13
13
- " doc/**"
@@ -26,16 +26,14 @@ jobs:
26
26
matrix :
27
27
settings : [
28
28
[actions-38-downstream_compat.yaml, "not slow and not network and not clipboard", "", "", "", "", ""],
29
- [actions-38-minimum_versions.yaml, "slow", "", "", "", "", ""],
30
- [actions-38-minimum_versions.yaml, "not slow and not network and not clipboard", "", "", "", "", ""],
31
- [actions-38-locale_slow.yaml, "slow", "language-pack-it xsel", "it_IT.utf8", "it_IT.utf8", "", ""],
32
- [actions-38.yaml, "not slow and not clipboard", "", "", "", "", ""],
33
- [actions-38-slow.yaml, "slow", "", "", "", "", ""],
34
- [actions-38-locale.yaml, "not slow and not network", "language-pack-zh-hans xsel", "zh_CN.utf8", "zh_CN.utf8", "", ""],
35
- [actions-39-slow.yaml, "slow", "", "", "", "", ""],
29
+ [actions-38-minimum_versions.yaml, "not clipboard", "", "", "", "", ""],
30
+ [actions-38.yaml, "not slow and not network", "language-pack-it xsel", "it_IT.utf8", "it_IT.utf8", "", ""],
31
+ [actions-38.yaml, "not slow and not network", "language-pack-zh-hans xsel", "zh_CN.utf8", "zh_CN.utf8", "", ""],
32
+ [actions-38.yaml, "not clipboard", "", "", "", "", ""],
36
33
[actions-pypy-38.yaml, "not slow and not clipboard", "", "", "", "", "--max-worker-restart 0"],
37
- [actions-39-numpydev.yaml, "not slow and not network", "xsel", "", "", "deprecate", "-W error"],
38
- [actions-39.yaml, "not slow and not clipboard", "", "", "", "", ""]
34
+ [actions-39.yaml, "not clipboard", "", "", "", "", ""],
35
+ [actions-310-numpydev.yaml, "not slow and not network", "xsel", "", "", "deprecate", "-W error"],
36
+ [actions-310.yaml, "not clipboard", "", "", "", "", ""],
39
37
]
40
38
fail-fast : false
41
39
env :
52
50
COVERAGE : ${{ !contains(matrix.settings[0], 'pypy') }}
53
51
concurrency :
54
52
# https://github.community/t/concurrecy-not-work-for-push/183068/7
55
- group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.settings[0] }}
53
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.settings[0] }}-${{ matrix.settings[1] }}-${{ matrix.settings[2] }}
56
54
cancel-in-progress : true
57
55
58
56
services :
@@ -120,7 +118,7 @@ jobs:
120
118
if : ${{ env.IS_PYPY == 'false' }} # No pypy3.8 support
121
119
122
120
- name : Setup PyPy
123
- uses : actions/setup-python@v2.3.1
121
+ uses : actions/setup-python@v2
124
122
with :
125
123
python-version : " pypy-3.8"
126
124
if : ${{ env.IS_PYPY == 'true' }}
@@ -146,15 +144,12 @@ jobs:
146
144
run : pushd /tmp && python -c "import pandas; pandas.show_versions();" && popd
147
145
148
146
- name : Publish test results
149
- uses : actions/upload-artifact@master
147
+ uses : actions/upload-artifact@v2
150
148
with :
151
149
name : Test results
152
150
path : test-data.xml
153
151
if : failure()
154
152
155
- - name : Print skipped tests
156
- run : python ci/print_skipped.py
157
-
158
153
- name : Upload coverage to Codecov
159
154
uses : codecov/codecov-action@v2
160
155
with :
0 commit comments