say I have a repository with the following structure:
.
├── book
│ ├── adder
│ ├── branches
...
how would I write a pipeline that cd
s into each directory and runs cargo check
? I have the following so far:
kind: pipeline
type: kubernetes
steps:
- image: rust:1.45.0-alpine3.12
commands:
- cd book/<each folder here>
- cargo check
thanks!