From a3ee6f25e913c4781ce56ed7e13d3a2e04032950 Mon Sep 17 00:00:00 2001 From: Samuel James Date: Thu, 23 Jul 2026 15:32:11 +0000 Subject: [PATCH] ci: add Gitea Actions workflow --- .gitea/workflows/ci.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..7bc8efd --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,12 @@ +name: CI +on: [pull_request] +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - run: pip install -r requirements.txt + - run: python -m py_compile screenshot_scout.py