Skip to content

Change the bug report issue template in order to avoid "1 of n tasks" for the environment section #2356

Change the bug report issue template in order to avoid "1 of n tasks" for the environment section

Change the bug report issue template in order to avoid "1 of n tasks" for the environment section #2356

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
env:
CARGO_TERM_COLOR: always
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- run: rustup component add clippy rustfmt
- uses: actions/checkout@v4
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Check format
run: cargo fmt --all -- --check
- name: Check
run: cargo check --verbose --all-targets --all-features
- name: Clippy
run: cargo clippy --workspace --no-deps --all-features --all-targets -- -D warnings
- name: Validate documentation
run: cargo doc --workspace --no-deps --all-features
- name: Run tests
run: cargo test --verbose