Change #12
2 changed files with 8 additions and 1 deletions
|
@ -11,7 +11,12 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: https://github.com/actions/checkout@v3
|
||||||
|
|
||||||
|
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||||
|
|
||||||
|
- name: Install flip-link
|
||||||
|
run: cargo install flip-link
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build
|
run: cargo build
|
|
@ -104,6 +104,8 @@ fn main() -> ! {
|
||||||
fn mouse_move(delay: &mut Delay, wait_time: u32, v: i8) {
|
fn mouse_move(delay: &mut Delay, wait_time: u32, v: i8) {
|
||||||
delay.delay_ms(wait_time);
|
delay.delay_ms(wait_time);
|
||||||
|
|
||||||
|
// dummy comment for actions testing
|
||||||
|
|
||||||
let rep = MouseReport {
|
let rep = MouseReport {
|
||||||
x: 0,
|
x: 0,
|
||||||
y: v,
|
y: v,
|
||||||
|
|
Loading…
Reference in a new issue