Request: Do not allocate a temporay Vec
when writing multiple coils/registers
#227
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: Copyright (c) 2017-2023 slowtec GmbH <post@slowtec.de> | |
# SPDX-License-Identifier: CC0-1.0 | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow | |
name: continuous-integration | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ${{ matrix.runner_os }} | |
strategy: | |
matrix: | |
target: | |
- x86_64-unknown-linux-gnu | |
- x86_64-apple-darwin | |
- x86_64-pc-windows-msvc | |
include: | |
- target: x86_64-unknown-linux-gnu | |
runner_os: ubuntu-latest | |
- target: x86_64-apple-darwin | |
runner_os: macos-latest | |
- target: x86_64-pc-windows-msvc | |
runner_os: windows-latest | |
steps: | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: ${{ matrix.target }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Generate Cargo.lock | |
run: cargo generate-lockfile | |
- name: Cache Rust toolchain and build artifacts | |
uses: Swatinem/rust-cache@v2 | |
with: | |
# Distinguished by the action name to avoid sharing across different actions! | |
shared-key: "continuous-integration" | |
- name: Build tests with all features enabled | |
run: cargo test --workspace --locked --all-features --all-targets --no-run | |
- name: Run tests with all features enabled | |
run: cargo test --workspace --locked --all-features --all-targets -- --nocapture --quiet | |
- name: Build workspace documentation with all features enabled | |
run: cargo doc --workspace --locked --all-features | |
- name: Build release with default features | |
run: cargo build --locked --all-targets --profile release |