Thanks to visit codestin.com
Credit goes to github.com

Skip to content

readme: markdownlint again. #193

readme: markdownlint again.

readme: markdownlint again. #193

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2023-2025 Yegor Bugayenko
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: cargo
'on':
push:
pull_request:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-24.04
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo test --all-features -- --show-output
- run: cargo test --release --all-features -- --show-output
- run: cargo fmt --check
- run: cargo doc --no-deps
- run: cargo clippy -- --no-deps