Skip to content

Add manual hotkey trigger #10

Add manual hotkey trigger

Add manual hotkey trigger #10

Workflow file for this run

name: Rust
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: ./.github/actions/dependencies
- name: Check
run: |
cargo clippy --workspace --all-features
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: ./.github/actions/dependencies
- name: Check
run: |
cargo fmt --check
build:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: ./.github/actions/dependencies
- name: Check
run: |
cargo build --release