Skip to content

Fixed metadata keyword typo #103

Fixed metadata keyword typo

Fixed metadata keyword typo #103

Workflow file for this run

name: CLI
on:
pull_request:
branches:
- master
paths:
- 'cli/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 🛎 Checkout
uses: actions/checkout@v3
- name: 🔧 Install rust dependencies
uses: ./.github/workflows/rust-install
- name: Cargo fmt
run: cargo fmt --all -- --check
- name: Cargo check
run: cargo check
- name: Cargo clippy
run: cargo clippy -- -D warnings
- name: Cargo test
run: cargo test