tbot 0.5.0

Make cool Telegram bots with Rust easily.
Documentation
default:
  image: rust:latest
  before_script:
  - export PATH=$PATH:/root/.cargo/bin/
  - rustup component add clippy
  - rustup component add rustfmt
    
check-formatting:
    stage: test
    script:
        - cargo fmt -- --check
    only:
        - branches
        - merge_requests

run-clippy:
    stage: test
    script:
        - cargo clippy --target-dir=../target --examples --no-default-features --features "tokio/macros tls" -- -D warnings
        - cargo clippy --target-dir=../target --examples --no-default-features --features "tokio/macros rustls" -- -D warnings
        - cargo clippy --target-dir=../target --examples --features "tokio/macros proxy" -- -D warnings
    only:
        - branches
        - merge_requests

run-tests:
    stage: test
    script:
        - cargo test --target-dir=../target --features="proxy"
    only:
        - branches
        - merge_requests

generate-master-docs:
    stage: docs
    script:
        - cargo doc --release --no-deps --target-dir=../target
        - mv ../target/doc ./public
        - echo '<meta http-equiv="refresh" content="0; url=./tbot/index.html">' > ./public/index.html
    artifacts:
        paths:
            - public
    only:
        - master

stages:
    - test
    - docs