summaryrefslogtreecommitdiff
path: root/README.md
blob: 7c3731888b2964c82bd0511b65d48018ecb68ed5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 `..radicle/native.yaml` that
specifies how CI is run for the repository. For example:

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