build(deps): bump serde_json from 1.0.120 to 1.0.124 #749
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
name: CI | |
on: [push, pull_request] | |
env: | |
TARGET: armv7-unknown-linux-gnueabihf | |
jobs: | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
target: ${{ env.TARGET }} | |
default: true | |
components: rustfmt | |
- uses: actions-rs/cargo@v1 | |
with: | |
use-cross: true | |
args: --package=marauder --target ${{ env.TARGET }} | |
command: test | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
target: ${{ env.TARGET }} | |
default: true | |
components: rustfmt | |
- run: cargo +nightly fmt --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
target: ${{ env.TARGET }} | |
default: true | |
components: rustfmt, clippy | |
- uses: actions-rs/cargo@v1 | |
with: | |
use-cross: true | |
args: --package=marauder --target ${{ env.TARGET }} -- -D warnings | |
command: clippy |