Skip to content

Commit 9171e28

Browse files
authored
add dependabot, use alls-green (#86)
1 parent e80e61d commit 9171e28

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/dependabot.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: pip
5+
directory: /
6+
schedule:
7+
interval: weekly
8+
9+
- package-ecosystem: github-actions
10+
directory: /
11+
schedule:
12+
interval: weekly
13+
open-pull-requests-limit: 99
14+
rebase-strategy: "disabled"

.github/workflows/ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,20 @@ jobs:
2929
- name: test
3030
run: make test INSTALL_EXTRA=test
3131

32+
all-tests-pass:
33+
if: always()
34+
35+
needs:
36+
- test
37+
38+
runs-on: ubuntu-latest
39+
40+
steps:
41+
- name: check test jobs
42+
uses: re-actors/[email protected]
43+
with:
44+
jobs: ${{ toJSON(needs) }}
45+
3246
lint:
3347
runs-on: ubuntu-latest
3448
steps:

0 commit comments

Comments
 (0)