diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..86859f1 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,15 @@ +name: Cargo Build & Test + +on: + pull_request: + +jobs: + can-publish: + container: git.kjan.de/actions/rust-node + name: Test publish + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: cargo publish -n + +