ressa 0.7.0-beta-5

An ECMAscript parser
Documentation
language: rust
sudo: false
addons:
    apt:
        packages:
          - libssl-dev
rust:
  - stable
  - nightly
install:
  - npm i
cache:
  - directories:
    - node_modules
    - /home/travis/.cargo
    - moz-central
before_cache:
  - rm -rf /home/travis/.cargo/registry
  - |
    if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then
      RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo +nightly install cargo-tarpaulin -f
    fi
script:
  - cargo test --features moz_central
after_success: |
  if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then
    cargo +nightly tarpaulin --out Xml &&
    bash <(curl -s https://codecov.io/bash)
  fi
matrix:
  allow_failures:
    - rust: nightly
notifications:
  email: never