From 161e917e81e4005f089a20359f3995f9fe9d4a88 Mon Sep 17 00:00:00 2001 From: vrubel Date: Sat, 6 Jun 2026 13:10:34 +0000 Subject: [PATCH] Add test CI workflow --- .forgejo/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .forgejo/workflows/test.yml diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000..1ced00c --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,23 @@ +name: Test pipeline + +on: + push: + branches: + - master + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Show files + run: | + pwd + ls -la + find . -maxdepth 2 -type f | sort + + - name: Check Docker Compose config + run: | + docker compose config