From 0a3827cc8b540713f1535d71eab08e3497e383e9 Mon Sep 17 00:00:00 2001 From: Tyler Date: Mon, 9 Sep 2024 15:07:33 -0700 Subject: [PATCH] add yaml for gitea actions --- .gitea/workflows/test.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..0a842c1 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,15 @@ +name: Z-py Gitea Actions +run-name: ${{ gitea.actor }} for z-py +on: [push] + +jobs: + setup-environment: + runs-on: native + steps: + - run: nix-shell + - run: pip install -r requirements.txt + - run: pip install . + run-tests: + runs-on: native + steps: + - run: pytest \ No newline at end of file