Skip to content

rust-rewrite: Fixed formatting. #55

rust-rewrite: Fixed formatting.

rust-rewrite: Fixed formatting. #55

Workflow file for this run

name: ci
on:
push:
branches: ["schilkp/rust"]
jobs:
cargo-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Cargo Test
run: cargo test --all
fmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: rustfmt
- name: Format Check
run: cargo fmt -- --check
clippy-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy
- name: Lint
run: cargo clippy --all-features -- -D warnings
generator-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- uses: carlosperate/arm-none-eabi-gcc-action@v1
- name: Run generator tests.
run: REGINALD_TEST_C_FUNCPACK_ADDITIONAL_COMPILERS=arm-none-eabi-gcc cargo test --workspace -- --ignored --show-output