Skip to content

release: v0.1.6

release: v0.1.6 #73

Workflow file for this run

name: Rust Code Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
check-core:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with: { components: rustfmt, clippy }
- run: cargo fmt --all -- --check
working-directory: echonet-lite-core
- run: cargo clippy
working-directory: echonet-lite-core
check-mra-reader:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with: { components: rustfmt, clippy }
- run: cargo fmt --all -- --check
working-directory: mra-reader
- run: cargo clippy
working-directory: mra-reader