Skip to content

Instantly share code, notes, and snippets.

@DamianRivas
Created December 27, 2018 21:31
Show Gist options
  • Save DamianRivas/90b5ee417f2d77e6cde1b3735033b80b to your computer and use it in GitHub Desktop.
Save DamianRivas/90b5ee417f2d77e6cde1b3735033b80b to your computer and use it in GitHub Desktop.
Non-workng yml
language: bash
os:
- linux
- osx
rust:
- stable
jdk:
- oraclejdk
node_js:
- "node"
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install shellcheck; fi
before_script:
- export PATH="$(pwd):$PATH"
script:
- shellcheck test.sh
- shellcheck -x repl
- shellcheck repl_modules.sh
- shellcheck language_support.sh
- shellcheck -e SC2034,SC2148 repl_config
- shellcheck -e SC2034,SC2148 repl_config.default
- shellcheck install.sh
- bash "./test/main_test.sh"
- bash "./test/modules_test.sh"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment