view .travis.yml @ 111:fc26b746ea54 v0.9.0

Release v0.9.0
author Lewin Bormann <lbo@spheniscida.de>
date Tue, 16 Nov 2021 08:41:00 +0100
parents f056393c3536
children
line wrap: on
line source

os:
  - linux
  - osx
dist: bionic
sudo: false

language: rust
rust:
  - stable
  - nightly

stages:
  - name: test
  - name: lint

install: true

# Default script is the "test" stage
script: 
  - cargo build
  - cargo test

jobs:
  include:
    - stage: lint
      if: os = linux
      rust: stable
      install:
        - rustup component add rustfmt
      script:
        - cargo fmt --all -- --check

cache: cargo