From d804607e7edaa2c33d7abea19e3981f5fb2eaf3f Mon Sep 17 00:00:00 2001 From: Alvaro Labella Date: Fri, 5 Jun 2026 12:30:42 +0200 Subject: [PATCH] CI workflow --- .gitea/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..52a04d6 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,18 @@ +name: Build PY-GREX + +on: + push: + branches: + - master + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Build Docker image + run: docker build -t pygrex . \ No newline at end of file