diff --git a/.forgejo/workflows/compile.yaml b/.forgejo/workflows/compile.yaml new file mode 100644 index 0000000..63f95c6 --- /dev/null +++ b/.forgejo/workflows/compile.yaml @@ -0,0 +1,19 @@ +on: [push] +jobs: + test: + runs-on: docker + container: + image: code.forgejo.org/oci/debian:latest + 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