From ee8dae4981a1f39c41594cfe66956d9f5656a52b Mon Sep 17 00:00:00 2001 From: zxq5 Date: Sat, 22 Feb 2025 01:12:15 +0000 Subject: [PATCH] added rust.yml workflow, probably wont work. --- .gitea/workflows/rust.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/rust.yml diff --git a/.gitea/workflows/rust.yml b/.gitea/workflows/rust.yml new file mode 100644 index 0000000..438a555 --- /dev/null +++ b/.gitea/workflows/rust.yml @@ -0,0 +1,12 @@ +on: [push, pull_request] + +name: Continuous integration + +jobs: + build: + name: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions-rust-lang/setup-rust-toolchain@v1 + - run: cargo build \ No newline at end of file