diff --git a/.forgejo/workflows/compile.yaml b/.forgejo/workflows/compile.yaml new file mode 100644 index 0000000..c4de9b4 --- /dev/null +++ b/.forgejo/workflows/compile.yaml @@ -0,0 +1,18 @@ +on: [push] +jobs: + test: + runs-on: docker + container: + image: rust:trixie + steps: + - name: prepare packages + run: | + apt update && \ + apt -y install nodejs git + + - run: touch test + shell: bash + + - uses: actions/checkout@v6 + - name: build the package + run: cargo build