File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version : 2
7
+ updates :
8
+ - package-ecosystem : github-actions
9
+ directory : /
10
+ schedule :
11
+ interval : daily
Original file line number Diff line number Diff line change @@ -17,11 +17,16 @@ jobs:
17
17
name : Test on ${{ matrix.os }}
18
18
19
19
steps :
20
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
21
with :
22
22
submodules : recursive
23
23
- run : brew install coreutils gnu-sed
24
24
# https://docs.github.com/en/actions/learn-github-actions/variables#detecting-the-operating-system
25
25
# https://docs.github.com/en/actions/learn-github-actions/expressions
26
26
if : runner.os == 'macOS'
27
27
- run : test-cases/integration-test.sh
28
+ # https://remarkablemark.org/blog/2017/10/12/check-git-dirty/
29
+ - name : Check git dirty
30
+ run : |
31
+ git status --short
32
+ [ -z "$(git status --short)" ]
Original file line number Diff line number Diff line change 12
12
name : Lint
13
13
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
with :
17
17
submodules : recursive
18
18
- run : test-cases/lint.sh
19
+ # https://remarkablemark.org/blog/2017/10/12/check-git-dirty/
20
+ - name : Check git dirty
21
+ run : |
22
+ git status --short
23
+ [ -z "$(git status --short)" ]
You can’t perform that action at this time.
0 commit comments