File tree Expand file tree Collapse file tree 6 files changed +18
-0
lines changed Expand file tree Collapse file tree 6 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 42
42
- name : Configure git to not checkout CRLF
43
43
run : git config --global --add core.autocrlf false
44
44
45
+ - name : Install OS-specific dependencies
46
+ run : bash ./setup/${{ matrix.os }}.bash
47
+
45
48
- name : Test
46
49
run : |
47
50
bats --pretty --timing test --filter-tags !format
Original file line number Diff line number Diff line change
1
+ ./macos-all.bash
Original file line number Diff line number Diff line change
1
+ ./macos-all.bash
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ brew install libmagic
4
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ sudo apt-get update && \
4
+ sudo apt-get install -y libmagic-dev && \
5
+ sudo apt-get clean && sudo rm -rf /var/lib/apt/lists/*
6
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ choco install file
You can’t perform that action at this time.
0 commit comments