From 678ce5ef1c19b0e502ac25243f221c6c9a6adcf7 Mon Sep 17 00:00:00 2001 From: Raphael Jacobs Date: Mon, 21 Jul 2025 06:51:14 +0200 Subject: [PATCH] add pipeline --- .forgejo/workflows/action.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .forgejo/workflows/action.yaml diff --git a/.forgejo/workflows/action.yaml b/.forgejo/workflows/action.yaml new file mode 100644 index 0000000..3d188ca --- /dev/null +++ b/.forgejo/workflows/action.yaml @@ -0,0 +1,17 @@ +name: ci + +on: + push: + +jobs: + checkout: + runs-on: docker + container: + image: rust:latest + steps: + - name: get deps + run: apt install git nodejs + - name: Checkout + uses: actions/checkout@v4 + - name: test + run: cargo test