Radish alpha
r
rad:z3qg5TKmN83afz2fj9z3fQjU8vaYE
Radicle CI adapter for native CI
Radicle
Git
docs: add a README.md
Lars Wirzenius committed 2 years ago
commit 6907e361214b4cb6261fb01598c26cf2411ed822
parent 2ee1fbf
1 file changed +16 -0
added README.md
@@ -0,0 +1,16 @@
+
# radicle-native-ci
+

+
This is an adapter for Radicle CI, for performing CI runs locally.
+
It's meant to be used with, and executed by, `radicle-c-broker`.
+

+
The CI run is performed locally, without any isolation. This is not
+
safe and secure, but it's simple, and easy to get working. Do not use
+
this unless you trust the repository.
+

+
The repository must contain a file `.ci/radicle.yaml` that
+
specifies how CI is run for the repository. For example:
+

+
```yaml
+
shell: |
+
  cargo test --locked --workspace
+
```