From ce1b68e98364328f4c570e8ac8cd5d632797512e Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 21 Jul 2024 16:40:51 +0100 Subject: [PATCH] add gitea workflow --- .gitea/workflows/build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/build.yml diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..da2a36c --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,20 @@ +name: python-build + +on: [push] + +env: + BUILD_TYPE: Release + +jobs: + build: + runs-on: ubuntu-gitea + + steps: + - uses: actions/checkout@v2 + + - name: Is Python Available? + run: + uname -a + && lsb_release -a + && python --version + && pip --version