We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 661cede commit d6346c8Copy full SHA for d6346c8
.travis.yml
@@ -0,0 +1,14 @@
1
+sudo: false
2
+language: perl
3
+
4
+before_install:
5
+ - sudo apt-get -qq update
6
+ - sudo apt-get install -y shellcheck bash
7
8
+script:
9
+ - ./citest
10
11
+notifications:
12
+ email:
13
+ on_success: never
14
+ on_failure: change
citest
@@ -0,0 +1,18 @@
+#!/bin/bash
+set -euo pipefail
+bash_scripts=(
+yank.tmux
+scripts/*.sh
+)
+bash -Dn "${bash_scripts[@]}"
+shellcheck \
+ --shell=bash \
+ --external-sources \
15
+ --color=always \
16
+ "${bash_scripts[@]}"
17
18
+# EOF
0 commit comments