ci.yml 2.4 KiB
Newer Older
name: Continuous integration

Denis_P's avatar
Denis_P committed
on:
  push:
    branches:
      - master
Denis_P's avatar
Denis_P committed
    tags:
      - v*
    paths-ignore:
      - 'README.md'
  pull_request:
    branches:
      - master
jobs:
  check-style:
    name: Check style
    runs-on: ubuntu-latest
    steps:

      - name: Install Rust stable toolchain
        with:
          profile: minimal
          toolchain: stable
          override: true
          components: clippy, rustfmt

Denis_P's avatar
Denis_P committed
      - name:                      Rust Cache

      - name: Cargo fmt
        with:
          command: fmt
          args: --all -- --check

      - name: Cargo clippy
        with:
          command: clippy

      - name: Check rustdoc links
        run: RUSTDOCFLAGS="--deny broken_intra_doc_links" cargo doc --verbose --workspace --no-deps --document-private-items

  check-code:
    name: Check
    runs-on: ubuntu-latest
    steps:

      - name: Install Rust stable toolchain
        with:
          profile: minimal
          toolchain: stable
          override: true

Denis_P's avatar
Denis_P committed
      - name:                      Rust Cache
      - name: Cargo check all targets
        with:
          command: check
      - name: Cargo check HTTP client with tokio02
        with:
          command: check
          args: --manifest-path http-client/Cargo.toml --no-default-features --features tokio02

  tests:
    name: Run tests
    runs-on: ubuntu-latest
    steps:
      - name: Checkout sources

      - name: Install Rust stable toolchain
        with:
          profile: minimal
          toolchain: stable
          override: true

Denis_P's avatar
Denis_P committed
      - name:                      Rust Cache

      - name: Cargo build
        with:
          command: build
          args: --workspace

      - name: Cargo test
        with:
          command: test