From e9a0d8cb8a39da54b9787be44424d6aecaecbd5d Mon Sep 17 00:00:00 2001 From: user0-07161 Date: Mon, 9 Feb 2026 19:52:52 +0100 Subject: [PATCH] feat: checks using forgejo actions --- .forgejo/workflows/compile.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .forgejo/workflows/compile.yaml diff --git a/.forgejo/workflows/compile.yaml b/.forgejo/workflows/compile.yaml new file mode 100644 index 0000000..f4472b6 --- /dev/null +++ b/.forgejo/workflows/compile.yaml @@ -0,0 +1,9 @@ +on: [push] +jobs: + test: + runs-on: docker + container: + image: rust:trixie + steps: + - uses: actions/checkout@v4 + - run: cargo build