From a622062261db1af2a146f6a9357c28e203a99d47 Mon Sep 17 00:00:00 2001 From: Iskken Date: Thu, 9 Jul 2026 00:33:23 +0200 Subject: [PATCH] Set up GitHub Actions --- .github/workflows/tests.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3ba2e88..77a5694 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,4 +25,15 @@ jobs: pip install pytest - name: Run tests - run: pytest \ No newline at end of file + run: pytest + + docker-build: + runs-on: ubuntu-latest + needs: test + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Build Docker image + run: docker build -t glassboxml-webapp . \ No newline at end of file