diff --git a/.forgejo/workflows/rust.yml b/.forgejo/workflows/rust.yml new file mode 100644 index 0000000..9f7719c --- /dev/null +++ b/.forgejo/workflows/rust.yml @@ -0,0 +1,18 @@ +name: Rust + +on: [push] +jobs: + test: + runs-on: docker + container: + image: rust:trixie + steps: + - name: prepare packages + run: apt update && apt install git node -y + + - name: checkout + uses: actions/checkout@v4 + + - name: build + run: cargo build +