chore(backend): enable insecure-print by default on CI #51
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: cargo test | |
on: | |
push: | |
branches: | |
- "staging" | |
paths: | |
- "**.rs" | |
- .github/workflows/staging.yml | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
targets: wasm32-unknown-unknown, x86_64-unknown-linux-gnu | |
components: clippy, rustfmt | |
- name: Set up cargo cache | |
uses: actions/cache@v3 | |
continue-on-error: false | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo- | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v2 | |
- name: Install Just | |
uses: taiki-e/install-action@just | |
- name: Install sea-orm-cli | |
run: cargo install sea-orm-cli | |
- name: Lint | |
run: | | |
cargo fmt --all -- --check | |
cargo clippy | |
- name: Check | |
run: cargo check |