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