Skip to content

Commit 7142fcb

Browse files
committed
Cleanup github workflow
1 parent 4071792 commit 7142fcb

File tree

1 file changed

+1
-25
lines changed

1 file changed

+1
-25
lines changed

.github/workflows/ci.yml

+1-25
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,6 @@ on:
1515

1616

1717
jobs:
18-
pre_job:
19-
runs-on: ubuntu-latest
20-
# Map a step output to a job output
21-
outputs:
22-
should_skip: ${{ steps.skip_check.outputs.should_skip }}
23-
steps:
24-
- id: skip_check
25-
uses: fkirc/skip-duplicate-actions@master
26-
with:
27-
github_token: ${{ github.token }}
28-
paths_ignore: '["CHANGES/**", "CHANGES.rst", "LICENSE.txt", "README.rst", "tools/**"]'
29-
3018
lint:
3119
name: Linter
3220
runs-on: ubuntu-latest
@@ -85,9 +73,7 @@ jobs:
8573
8674
test:
8775
name: Test
88-
needs: [lint, pre_job]
89-
if: needs.pre_job.outputs.should_skip == 'false'
90-
76+
needs: [lint]
9177
strategy:
9278
matrix:
9379
pyver: [3.6, 3.7, 3.8, 3.9]
@@ -134,16 +120,6 @@ jobs:
134120
flags: unit
135121
fail_ci_if_error: false
136122

137-
test-summary:
138-
name: Test matrix status
139-
if: needs.pre_job.outputs.should_skip == 'false' && always()
140-
runs-on: ubuntu-latest
141-
needs: [pre_job, test]
142-
steps:
143-
- name: Check build matrix status
144-
if: needs.test.result != 'success'
145-
run: exit 1
146-
147123
deploy:
148124
name: Deploy
149125
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)