We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed6f2a1 commit 5883104Copy full SHA for 5883104
2 files changed
.github/workflows/test.yml
@@ -23,6 +23,10 @@ jobs:
23
- 'ubuntu-latest'
24
steps:
25
- uses: 'actions/checkout@v2'
26
+ with:
27
+ fetch-depth: 1
28
+ - name: 'Install Dependencies'
29
+ run: './test/install_deps.sh'
30
- name: 'Run all tests'
31
run: './test/run.sh'
32
shell: 'bash'
@@ -41,6 +45,10 @@ jobs:
41
45
- 'windows-2019'
42
46
43
47
48
49
50
51
44
52
53
54
test/install_deps.sh
@@ -0,0 +1,6 @@
1
+#!/usr/bin/env bash
2
+set -uo pipefail;
3
+
4
+if [[ $(uname) == 'Darwin' ]] && [ $(which brew) ]; then
5
+ brew install grep;
6
+fi;
0 commit comments