From c5b9bf720bbb16e6b59ce2de77f8b8193af3e093 Mon Sep 17 00:00:00 2001 From: Hugo Jean Ponsin Date: Tue, 9 Jun 2026 10:36:32 +0200 Subject: [PATCH] typo --- .gitea/workflows/action.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/action.yaml diff --git a/.gitea/workflows/action.yaml b/.gitea/workflows/action.yaml new file mode 100644 index 0000000..aac88ee --- /dev/null +++ b/.gitea/workflows/action.yaml @@ -0,0 +1,22 @@ +name: CI + +on: + push: + branches: [ "master" ] + +jobs: + build-and-test: + runs-on: linmidas + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Configure project + run: | + cmake -B build + - name: Build + run: | + cmake --build build + - name: Run tests + run: | + python tests/test.py + \ No newline at end of file