Merge pull request #1 from iceHtwoO/read_SoC_temp

read SoC Temperature
This commit is contained in:
Alexander Neuhäuser
2025-07-18 14:59:45 +02:00
committed by Alexander Neuhäuser
16 changed files with 255 additions and 64 deletions

View File

@@ -3,7 +3,7 @@ name: Rust
on:
push:
pull_request:
branches: [ "master" ]
branches: ["master"]
env:
CARGO_TERM_COLOR: always
@@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install rustfmt for nightly
run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt
run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy
- name: Run format check
run: cargo fmt --check
- name: Run lint
@@ -27,6 +27,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install rustfmt for nightly
run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt
run: rustup component add --toolchain nightly-x86_64-unknown-linux-gnu rustfmt clippy
- name: Build
run: cargo build --verbose