quickfix-tokio 0.2.0

A pure-Rust FIX protocol engine built natively on tokio
Documentation
name: CI

on:
  push:
    branches: [main]
  pull_request:
  workflow_dispatch:

# Cancel superseded runs on the same ref.
concurrency:
  group: ci-${{ github.ref }}
  cancel-in-progress: true

env:
  CARGO_TERM_COLOR: always

jobs:
  ci:
    name: clippy ยท test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - name: Install stable toolchain
        uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy

      - name: Cache cargo build
        uses: Swatinem/rust-cache@v2

      # Lints the library, tests, and examples; warnings fail the build.
      - name: Clippy
        run: cargo clippy --all-targets --all-features -- -D warnings

      # Unit + integration + acceptance (the QuickFIX conformance suite) + doctests.
      - name: Test
        run: cargo test --all-features