MP-2815. Vesting migration to daodao #54
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: Main | |
on: | |
push: | |
branches: | |
- master | |
- main | |
pull_request: | |
env: | |
RUST_BACKTRACE: 1 | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
# selecting a toolchain should happen before the plugin, as the cache uses the current rustc version as its cache key | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Install cargo make | |
uses: davidB/rust-cargo-make@v1 | |
- name: Install stable Rust | |
run: cargo make install-stable | |
- name: Install nightly Rust | |
run: cargo make install-nightly | |
- name: Format | |
run: cargo make fmt | |
- name: Clippy | |
run: cargo make clippy | |
# fails if schemas changes not committed | |
- name: Check schemas up-to-date | |
run: | | |
cargo make generate-all-schemas | |
git diff --exit-code schemas | |
- name: Audit dependencies | |
run: | | |
cargo install --locked cargo-audit | |
cargo make audit |