this repo has no description

Add test workflow

+15
+15
.tangled/workflows/test-secrets.yml
··· 1 + when: 2 + - event: ["push"] 3 + branch: ["main"] 4 + 5 + engine: "nixery" 6 + 7 + steps: 8 + - name: "Verify secret access" 9 + command: | 10 + if [ "$TEST_SECRET_VERIFICATION" = "Hello :)" ]; then 11 + echo "Secret verification passed" 12 + else 13 + echo "Secret verification failed: expected 'Hello :)', got '$TEST_SECRET_VERIFICATION'" 14 + exit 1 15 + fi