From ab0b5ce4afcaa096f134717c278ccfa899e94f0b Mon Sep 17 00:00:00 2001
From: Neshura <neshura@noreply.forgejo.neshweb.net>
Date: Thu, 11 Jan 2024 10:31:38 +0000
Subject: [PATCH] Add test.yml for normal push actions

---
 .forgejo/workflows/test.yml | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 .forgejo/workflows/test.yml

diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml
new file mode 100644
index 0000000..49ae841
--- /dev/null
+++ b/.forgejo/workflows/test.yml
@@ -0,0 +1,31 @@
+name: 'Run Tests on Code'
+author: 'Neshura'
+
+on: 
+  push:
+    tags-ignore:
+      - '**'
+    branches:
+      - '**'
+      
+jobs:
+  run-tests:
+    runs-on: docker
+    container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
+    steps:
+      - name: Add Clippy
+        run: rustup component add clippy
+      - name: Checking Out Repository Code
+        uses: https://code.forgejo.org/actions/checkout@v3
+      - name: Set Up Cargo Cache
+        uses: actions/cache@v3
+        with:
+          path: |
+            ~/.cargo/bin/
+            ~/.cargo/registry/index/
+            ~/.cargo/registry/cache/
+            ~/.cargo/git/db/
+            target/                        
+          key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
+      - name: Run Clippy
+        run: cargo clippy
\ No newline at end of file