Skip to content

Move operation skills over #680

Move operation skills over

Move operation skills over #680

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check JSON formatting
run: npm run format:check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run cargo fmt
run: cargo fmt -p warp-command-signatures -p warp-completion-metadata --check
- name: Run cargo clippy
run: cargo clippy -p warp-command-signatures -p warp-completion-metadata --all-targets --all-features -- -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --verbose