We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e80e61d commit 9171e28Copy full SHA for 9171e28
.github/dependabot.yml
@@ -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
11
12
13
+ open-pull-requests-limit: 99
14
+ rebase-strategy: "disabled"
.github/workflows/ci.yml
@@ -29,6 +29,20 @@ jobs:
29
- name: test
30
run: make test INSTALL_EXTRA=test
31
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
46
lint:
47
runs-on: ubuntu-latest
48
steps:
0 commit comments