From 4623d9a32b4ade8f2ccfa4fc1e5f5d3e014a02b6 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Mon, 14 Aug 2023 21:51:35 +0200 Subject: [PATCH 1/5] Change --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 3452809..aa32e79 100644 --- a/src/main.rs +++ b/src/main.rs @@ -104,6 +104,8 @@ fn main() -> ! { fn mouse_move(delay: &mut Delay, wait_time: u32, v: i8) { delay.delay_ms(wait_time); + // dummy comment for actions testing + let rep = MouseReport { x: 0, y: v, From f7eb22f6ff2581ba9271a93bfdb91523304ad750 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Tue, 15 Aug 2023 10:28:35 +0200 Subject: [PATCH 2/5] .gitea/workflows/test.yaml aktualisiert --- .gitea/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 97432e1..0d52b03 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: https://github.com/actions/checkout@v3 - name: Build run: cargo build \ No newline at end of file From ab095b9faff1ef82de9af42c7f9ba43b2313a254 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Tue, 15 Aug 2023 10:30:57 +0200 Subject: [PATCH 3/5] .gitea/workflows/test.yaml aktualisiert --- .gitea/workflows/test.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 0d52b03..ad3b14d 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -12,6 +12,10 @@ jobs: steps: - uses: https://github.com/actions/checkout@v3 + + - uses: https://github.com/actions-rs/toolchain@v1 + with: + toolchain: stable - name: Build run: cargo build \ No newline at end of file From b97ac16c7075f4ae6f3c6786d4ceab11a3163eec Mon Sep 17 00:00:00 2001 From: hodasemi Date: Tue, 15 Aug 2023 10:38:28 +0200 Subject: [PATCH 4/5] .gitea/workflows/test.yaml aktualisiert --- .gitea/workflows/test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index ad3b14d..59e18f8 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -17,5 +17,8 @@ jobs: with: toolchain: stable + - name: Install flip-link + run: cargo install flip-link + - name: Build run: cargo build \ No newline at end of file From cb6736abcc7022e626346d34b9757972563b622b Mon Sep 17 00:00:00 2001 From: hodasemi Date: Tue, 15 Aug 2023 10:56:48 +0200 Subject: [PATCH 5/5] .gitea/workflows/test.yaml aktualisiert --- .gitea/workflows/test.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 59e18f8..7e32ecd 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -13,9 +13,7 @@ jobs: steps: - uses: https://github.com/actions/checkout@v3 - - uses: https://github.com/actions-rs/toolchain@v1 - with: - toolchain: stable + - uses: https://github.com/dtolnay/rust-toolchain@stable - name: Install flip-link run: cargo install flip-link