diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..e71851c --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,9 @@ +name: Gitea Actions Test +run_name: ${{ gitea.actor }} is testing out Gitea Actions +on: + pull_request: + types: [opened, reopened, edited, review_requested] +jobs: + runs-on: ubuntu-latest + steps: + run: cargo build --release \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index ccfc9b6..3452809 100644 --- a/src/main.rs +++ b/src/main.rs @@ -92,8 +92,8 @@ fn main() -> ! { } let mut delay = Delay::new(core.SYST, clocks.system_clock.freq().to_Hz()); - const PIXEL: i8 = 100; - const WAIT_TIME: u32 = 1000; + const PIXEL: i8 = 2; + const WAIT_TIME: u32 = 10000; loop { mouse_move(&mut delay, WAIT_TIME, PIXEL);