From 25d4aa3766599c8e7f047c9e142067c0901ea00d Mon Sep 17 00:00:00 2001 From: demo-bot Date: Sun, 9 Aug 2026 15:09:16 +0000 Subject: [PATCH] decomposer: generate files for Maintain only the latest check result for each monitored target in concurrency-safe memory and expose it through the specified FastAPI current-status endpoint. --- .github/workflows/test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..f485323 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,12 @@ +name: tests +on: [push, pull_request] +jobs: + pytest: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + - run: python -m pip install -e '.[test]' + - run: python -m pytest -q