mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
18 lines
341 B
YAML
18 lines
341 B
YAML
language: c
|
|
|
|
script:
|
|
- bats test
|
|
- ./lint.sh
|
|
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install shellcheck; fi
|
|
|
|
before_script:
|
|
- git clone https://github.com/sstephenson/bats.git /tmp/bats
|
|
- export PATH=/tmp/bats/bin:$PATH
|
|
|
|
os:
|
|
- linux
|
|
- osx
|