12 lines
353 B
YAML
12 lines
353 B
YAML
pipeline:
|
|
backend:
|
|
image: rust
|
|
commands:
|
|
- apt update && apt-get -y --no-install-recommends install tar gpg curl wget git
|
|
- rustup component add rustfmt
|
|
- rustup component add clippy
|
|
- make lint
|
|
- make test
|
|
- make doc
|
|
- make ci-deploy
|
|
secrets: [ GITEA_WRITE_DEPLOY_KEY, LIBREPAGES_DEPLOY_SECRET ]
|