refactor receive_message() into poll_message() #266
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: © 2023 Foundation Devices, Inc. <[email protected]> | |
# SPDX-License-Identifier: GPL-3.0-or-later | |
name: Lint | |
on: [push] | |
jobs: | |
is-reuse-compliant: | |
name: Is REUSE compliant? | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: fsfe/reuse-action@v2 | |
is-the-code-compilable: | |
name: Is the code compilable? | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/rust-toolchain | |
with: | |
toolchain: 1.74 | |
- run: cargo check | |
# The foundation-ffi crate won't compile for x86_64 targets because it | |
# requires a nightly Rust compiler for defining a global allocator and | |
# the exception handler. | |
# | |
# So, disable it for now. | |
- run: cargo check --no-default-features --workspace --exclude foundation-ffi | |
- run: cargo check --all-features | |
is-the-code-formatted: | |
name: Is the code formatted? | |
needs: [is-the-code-compilable] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/rust-toolchain | |
with: | |
toolchain: 1.74 | |
components: rustfmt | |
- run: cargo fmt --all -- --check | |
clippy-lints-pass: | |
name: Clippy lints pass? | |
needs: [is-the-code-compilable] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/rust-toolchain | |
with: | |
toolchain: 1.74 | |
components: clippy | |
- run: cargo clippy | |
tests-pass: | |
name: Tests pass? | |
needs: [is-the-code-compilable] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/rust-toolchain | |
with: | |
toolchain: 1.74 | |
- run: cargo test | |
- run: cargo test --no-default-features --workspace --exclude foundation-ffi | |
- run: cargo test --all-features |