From 09ea73a65aa1b1983f2805f5731e37830edd0bd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20W=C3=B6lfer?= Date: Sun, 27 Jul 2025 17:42:22 +0200 Subject: [PATCH] Added gitea actions --- .gitea/workflows/test.yaml | 11 +++++++++++ README.md | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 .gitea/workflows/test.yaml create mode 100644 README.md diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..49fbff1 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,11 @@ +name: Rust + +on: [push, pull_request] + +jobs: + build_and_test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions-rust-lang/setup-rust-toolchain@v1 + - run: cargo test --all-features diff --git a/README.md b/README.md new file mode 100644 index 0000000..d9e0ee5 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ + +[![Build Status](https://gitea.thasky.one/lukas/canvas-boardgame/actions/workflows/test.yaml/badge.svg)](https://gitea.thasky.one/lukas/canvas-boardgame/actions)