view .travis.yml @ 119:f159b9014b75 default tip

Added tag v0.10.0 for changeset f75ba3eceb26
author Lewin Bormann <lbo@spheniscida.de>
date Wed, 29 Dec 2021 10:05:08 +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