From f746c024191269e98c9f957a9a88f02c4d4ba7da 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 | 19 +++++++++++++++++++ 1 file changed, 19 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..bfae606 --- /dev/null +++ b/.forgejo/workflows/compile.yaml @@ -0,0 +1,19 @@ +on: [push] +jobs: + test: + runs-on: docker + container: + image: rust:trixie + steps: + - name: prepare packages + run: | + apt update && \ + apt -y install git nodejs + + - run: touch test + shell: bash + + - uses: actions/setup-node@v3 + - uses: actions/checkout@v6 + - name: build the package + run: cargo build