Skip to content

chore: Release manta version 0.6.9 #14

chore: Release manta version 0.6.9

chore: Release manta version 0.6.9 #14

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Rust environment
uses: actions/checkout@v3
- name: Install cargo audit
run: cargo install cargo-audit
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy --verbose
- name: Audit
run: cargo audit --ignore RUSTSEC-2020-0071