blob: 20c4abf818b80722d33383bd6b9fa21a9e44efb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
image: alpine/edge
packages:
- curl
- rsync
- shellcheck
- texinfo
- gzip
tasks:
- build: |
cd cpt
make
- test: |
cd cpt
curl -fsSL https://git.io/shellspec | sudo sh -s -- -y -p /usr
make test
|