rust: switch project layout from workspace to lib #261
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: Rust | |
on: [ push, pull_request ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run rustfmt | |
run: | | |
cd rust | |
cargo fmt -- --check | |
- name: Clippy | |
run: | | |
cd rust | |
cargo clippy -- -D clippy::all | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
cd rust | |
cargo build --verbose | |
- name: Release build | |
run: | | |
cd rust | |
cargo build --release --verbose | |
- name: Run tests | |
run: | | |
cd rust | |
cargo test --verbose |