mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
f174d03f7d
shellcheck is a truly valuable utility. Unfortunately installing the packages from debian-sid introduces a conflict. Let's try another suggestion from: https://github.com/koalaman/shellcheck/wiki/TravisCI Refs https://github.com/heroku/heroku-buildpack-python/commit/a0275888a26b8f0132c7bb9fe3bf194b5c4fab1f
21 lines
467 B
YAML
21 lines
467 B
YAML
language: bash
|
|
dist: trusty
|
|
jobs:
|
|
include:
|
|
- stage: "Bash linting (shellcheck)"
|
|
sudo: false
|
|
before_install:
|
|
- wget -c https://goo.gl/ZzKHFv -O - | tar -xvJ -C /tmp/
|
|
- PATH="/tmp/shellcheck-latest:$PATH"
|
|
script: make check
|
|
|
|
- stage: "Stack Tests"
|
|
services: docker
|
|
env: STACK=heroku-16
|
|
script: ./tests.sh
|
|
|
|
- stage: "Stack Tests"
|
|
services: docker
|
|
env: STACK=cedar-14
|
|
script: ./tests.sh
|