2023-03-21 16:30:05 +00:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build
|
|
|
|
run: cargo build --release --verbose
|
|
|
|
- name: Run cargo tests
|
|
|
|
run: cargo test --release --verbose
|
|
|
|
- name: Run lang tests
|
|
|
|
run: ./target/release/mcl_test_dev -m test
|
2023-03-21 18:26:11 +00:00
|
|
|
- name: Check formatting with clippy
|
|
|
|
run: cargo clippy -- -W clippy::pedantic -A clippy::struct-excessive-bools -A clippy::too_many_lines -A clippy::similar_names
|