Skip to content

feat: adding region field to stats and minor string fields perf optim… #54

feat: adding region field to stats and minor string fields perf optim…

feat: adding region field to stats and minor string fields perf optim… #54

Workflow file for this run

name: Continuous Integration
on: [ push ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
steps:
- name: Clone repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
target: wasm32-wasi
components: rustfmt, clippy
- name: Cache dependencies
uses: Swatinem/rust-cache@v2.2.1
- name: Run cargo-audit binary crate
uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Release Build
run: cargo build --release --all-features
- name: Run Clippy
run: cargo clippy --all-targets --all-features