From 6c58beddfe0d6ac7070d282edc5ee8fe76b5787b Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sun, 7 Jun 2026 14:40:08 +1000 Subject: [PATCH] Attempt to install SOPS in tests --- .forgejo/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 38fe90a..b52d8e6 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -27,6 +27,11 @@ jobs: run: | poetry install --with dev + - name: Install sops + run: | + curl -LO -o /usr/local/bin/sops https://github.com/getsops/sops/releases/download/v3.13.1/sops-v3.13.1.linux.amd64 + chmod +x /usr/local/bin/sops + - name: Run test script run: | ./tests.sh