1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
name: cargo-checks
on:
push:
branches: [ "main" ]
paths:
- Cargo.*
- src/**/*
- keyberon/**/*
- cfg_samples/**/*
- parser/**/*
- .github/workflows/rust.yml
pull_request:
branches: [ "main" ]
paths:
- Cargo.*
- src/**/*
- keyberon/**/*
- parser/**/*
- cfg_samples/**/*
- .github/workflows/rust.yml
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check fmt
run: cargo fmt --all --check
build-test-clippy-linux:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- build: linux
os: ubuntu-latest
target: x86_64-unknown-linux-musl
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
shared-key: "persist-cross-job"
workspaces: ./
- run: rustup component add clippy
- name: Run tests no features
run: cargo test --all --no-default-features
- name: Run clippy no features
run: cargo clippy --all --no-default-features -- -D warnings
- name: Run tests default features
run: cargo test --all
- name: Run clippy default features
run: cargo clippy --all -- -D warnings
- name: Run tests cmd
run: cargo test --all --features=cmd
- name: Run clippy cmd
run: cargo clippy --all --features=cmd -- -D warnings
- name: Run tests simulated output
run: cargo test --features=simulated_output -- sim_tests
- name: Run clippy simulated output
run: cargo clippy --all --features=simulated_output,cmd -- -D warnings
- name: Run clippy for parser with lsp feature
run: cargo clippy -p kanata-parser --features=lsp -- -D warnings
build-test-clippy-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- build: windows
os: windows-latest
target: x86_64-pc-windows-msvc
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
shared-key: "persist-cross-job"
workspaces: ./
- run: rustup component add clippy
- name: Run tests no features
run: cargo test --all --no-default-features
- name: Run clippy no features
run: cargo clippy --all --no-default-features -- -D warnings
- name: Run tests default features
run: cargo test --all
- name: Run clippy default features
run: cargo clippy --all -- -D warnings
- name: Run tests winIOv2
run: cargo test --all --features=cmd,win_llhook_read_scancodes,win_sendinput_send_scancodes
- name: Run clippy all winIOv2
run: cargo clippy --all --features=cmd,win_llhook_read_scancodes,win_sendinput_send_scancodes -- -D warnings
- name: Run tests all features
run: cargo test --all --features=cmd,interception_driver,win_sendinput_send_scancodes
- name: Run clippy all features
run: cargo clippy --all --features=cmd,interception_driver,win_sendinput_send_scancodes -- -D warnings
- name: Run tests simulated output
run: cargo test --features=simulated_output -- sim_tests
- name: Run clippy simulated output
run: cargo clippy --all --features=simulated_output,cmd -- -D warnings
- name: Run tests gui
run: cargo test --all --features=gui
- name: Run clippy gui
run: cargo clippy --all --features=gui -- -D warnings
- name: Check gui+cmd+interception
run: cargo check --features gui,cmd,interception_driver
build-test-clippy-macos:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- build: macos
os: macos-latest
target: x86_64-apple-darwin
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
shared-key: "persist-cross-job"
workspaces: ./
- run: rustup component add clippy
- name: Run tests default features
run: cargo test --all
- name: Run clippy default features
run: cargo clippy --all -- -D warnings
- name: Run tests cmd
run: cargo test --all --features=cmd
- name: Run clippy all features
run: cargo clippy --all --features=cmd -- -D warnings
|